From 5315c7ab1639e7f2f75921b64287a03450622dd9 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Tue, 25 Aug 2020 01:39:23 +0200 Subject: Try to fix file names on Windows --- tests/fixtures/mod.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tests/fixtures/mod.rs') 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; /// 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)] -- cgit v1.2.3