Skip to content

Commit

Permalink
Fix tests fn sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecot committed Jan 24, 2024
1 parent 84d6392 commit 5b56112
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ fn test_adobe_indesign_document() {
assert_eq!(fmt, FileFormat::AdobeIndesignDocument);
}

#[test]
fn test_djvu() {
let fmt = FileFormat::from_file("fixtures/document/sample.djvu").unwrap();
assert_eq!(fmt, FileFormat::Djvu);
}

#[cfg(feature = "reader-zip")]
#[test]
fn test_indesign_markup_language() {
let fmt = FileFormat::from_file("fixtures/document/sample.idml").unwrap();
assert_eq!(fmt, FileFormat::IndesignMarkupLanguage);
}

#[test]
fn test_djvu() {
let fmt = FileFormat::from_file("fixtures/document/sample.djvu").unwrap();
assert_eq!(fmt, FileFormat::Djvu);
}

#[test]
fn test_latex() {
let fmt = FileFormat::from_file("fixtures/document/sample.tex").unwrap();
Expand Down

0 comments on commit 5b56112

Please sign in to comment.