Rename all tests in tests folder

Using the name 'main' was confusing
This commit is contained in:
Mathijs van de Nes 2019-04-06 17:59:04 +02:00
parent 57c8444d8e
commit 5d0f198124
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ use std::io::Cursor;
// 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.
#[test]
fn main() {
fn end_to_end() {
let file = &mut Cursor::new(Vec::new());
write_to_zip_file(file).expect("file written");

View file

@ -26,6 +26,6 @@ const BUF : &[u8] = &[
];
#[test]
fn main() {
fn invalid_date() {
let _archive = ZipArchive::new(Cursor::new(BUF)).unwrap();
}