aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fixtures
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures')
-rw-r--r--tests/fixtures/mod.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/fixtures/mod.rs b/tests/fixtures/mod.rs
index 49ed7bd..4dcd350 100644
--- a/tests/fixtures/mod.rs
+++ b/tests/fixtures/mod.rs
@@ -8,7 +8,14 @@ pub type Error = Box<dyn std::error::Error>;
/// File names for testing purpose
#[allow(dead_code)]
-pub static FILES: &[&str] = &["test.txt", "test.html", "test.mkv", "test \" \' & < >.csv"];
+pub static FILES: &[&str] = &[
+ "test.txt",
+ "test.html",
+ "test.mkv",
+ #[cfg(not(windows))]"test \" \' & < >.csv",
+ "😀.data",
+ "⎙.mp4",
+];
/// Directory names for testing purpose
#[allow(dead_code)]