Rename all tests in tests folder
Using the name 'main' was confusing
This commit is contained in:
parent
57c8444d8e
commit
5d0f198124
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ use std::io::Cursor;
|
||||||
// This test asserts that after creating a zip file, then reading its contents back out,
|
// This test asserts that after creating a zip file, then reading its contents back out,
|
||||||
// the extracted data will *always* be exactly the same as the original data.
|
// the extracted data will *always* be exactly the same as the original data.
|
||||||
#[test]
|
#[test]
|
||||||
fn main() {
|
fn end_to_end() {
|
||||||
let file = &mut Cursor::new(Vec::new());
|
let file = &mut Cursor::new(Vec::new());
|
||||||
|
|
||||||
write_to_zip_file(file).expect("file written");
|
write_to_zip_file(file).expect("file written");
|
||||||
|
|
|
@ -26,6 +26,6 @@ const BUF : &[u8] = &[
|
||||||
];
|
];
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn main() {
|
fn invalid_date() {
|
||||||
let _archive = ZipArchive::new(Cursor::new(BUF)).unwrap();
|
let _archive = ZipArchive::new(Cursor::new(BUF)).unwrap();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue