diff options
author | khai96_ <hvksmr1996@gmail.com> | 2019-04-29 11:37:04 +0000 |
---|---|---|
committer | khai96_ <hvksmr1996@gmail.com> | 2019-04-29 11:37:04 +0000 |
commit | 014bc52dc0e693bca8183bcf19c813452a34cc1c (patch) | |
tree | f161e26514cf65e37ce869aea205e59e52dcbcc8 /tests/upload_files.rs | |
parent | Split integration test into multiple files (diff) | |
download | miniserve-014bc52dc0e693bca8183bcf19c813452a34cc1c.tar.gz miniserve-014bc52dc0e693bca8183bcf19c813452a34cc1c.zip |
Move helpers.rs to fixtures/mod.rs
Diffstat (limited to 'tests/upload_files.rs')
-rw-r--r-- | tests/upload_files.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/upload_files.rs b/tests/upload_files.rs index 4ebdb69..1bdecc3 100644 --- a/tests/upload_files.rs +++ b/tests/upload_files.rs @@ -1,5 +1,5 @@ -mod helpers; -use helpers::*; +mod fixtures; +use fixtures::*; #[rstest] fn uploading_files_works(tmpdir: TempDir, port: u16) -> Result<(), Error> { |