summaryrefslogtreecommitdiff
path: root/alligator_tvg/tests
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2023-02-13 00:24:07 -0500
committerMicha White <botahamec@outlook.com>2023-02-13 00:24:07 -0500
commit861b467b95be55db3a42182b77dba944869bf49f (patch)
treef58057d5ab9ad53601332981a31553b0ad05fe1b /alligator_tvg/tests
parentc31d51487082c6cf243ecd10da71a15a78d41add (diff)
Rename the subdirectories
Diffstat (limited to 'alligator_tvg/tests')
-rw-r--r--alligator_tvg/tests/examples/tvg/everything-32.tvgbin2637 -> 0 bytes
-rw-r--r--alligator_tvg/tests/examples/tvg/everything.tvgbin1447 -> 0 bytes
-rw-r--r--alligator_tvg/tests/examples/tvg/shield-16.tvgbin203 -> 0 bytes
-rw-r--r--alligator_tvg/tests/examples/tvg/shield-32.tvgbin371 -> 0 bytes
-rw-r--r--alligator_tvg/tests/examples/tvg/shield-8.tvgbin119 -> 0 bytes
-rw-r--r--alligator_tvg/tests/parse.rs14
6 files changed, 0 insertions, 14 deletions
diff --git a/alligator_tvg/tests/examples/tvg/everything-32.tvg b/alligator_tvg/tests/examples/tvg/everything-32.tvg
deleted file mode 100644
index 7ea4bdd..0000000
--- a/alligator_tvg/tests/examples/tvg/everything-32.tvg
+++ /dev/null
Binary files differ
diff --git a/alligator_tvg/tests/examples/tvg/everything.tvg b/alligator_tvg/tests/examples/tvg/everything.tvg
deleted file mode 100644
index b211c53..0000000
--- a/alligator_tvg/tests/examples/tvg/everything.tvg
+++ /dev/null
Binary files differ
diff --git a/alligator_tvg/tests/examples/tvg/shield-16.tvg b/alligator_tvg/tests/examples/tvg/shield-16.tvg
deleted file mode 100644
index aacd3ea..0000000
--- a/alligator_tvg/tests/examples/tvg/shield-16.tvg
+++ /dev/null
Binary files differ
diff --git a/alligator_tvg/tests/examples/tvg/shield-32.tvg b/alligator_tvg/tests/examples/tvg/shield-32.tvg
deleted file mode 100644
index a2abc92..0000000
--- a/alligator_tvg/tests/examples/tvg/shield-32.tvg
+++ /dev/null
Binary files differ
diff --git a/alligator_tvg/tests/examples/tvg/shield-8.tvg b/alligator_tvg/tests/examples/tvg/shield-8.tvg
deleted file mode 100644
index 57033be..0000000
--- a/alligator_tvg/tests/examples/tvg/shield-8.tvg
+++ /dev/null
Binary files differ
diff --git a/alligator_tvg/tests/parse.rs b/alligator_tvg/tests/parse.rs
deleted file mode 100644
index eb6e801..0000000
--- a/alligator_tvg/tests/parse.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-use std::fs::File;
-
-use alligator_tvg::{Rgba16, TvgFile};
-
-#[test]
-fn main() {
- for entry in std::fs::read_dir("tests/examples/tvg").unwrap() {
- let entry = entry.unwrap().file_name();
- let entry = entry.to_string_lossy();
- let mut file = File::open(format!("./tests/examples/tvg/{}", &entry)).unwrap();
- let _: TvgFile<Rgba16> = TvgFile::read_from(&mut file).unwrap();
- println!("{:?} succeeded!", entry);
- }
-}