diff options
| author | Micha White <botahamec@outlook.com> | 2023-02-13 00:24:07 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2023-02-13 00:24:07 -0500 |
| commit | 861b467b95be55db3a42182b77dba944869bf49f (patch) | |
| tree | f58057d5ab9ad53601332981a31553b0ad05fe1b /alligator_tvg/tests/parse.rs | |
| parent | c31d51487082c6cf243ecd10da71a15a78d41add (diff) | |
Rename the subdirectories
Diffstat (limited to 'alligator_tvg/tests/parse.rs')
| -rw-r--r-- | alligator_tvg/tests/parse.rs | 14 |
1 files changed, 0 insertions, 14 deletions
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); - } -} |
