diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auth.rs | 4 | ||||
-rw-r--r-- | tests/cli.rs | 4 | ||||
-rw-r--r-- | tests/fixtures/mod.rs (renamed from tests/helpers.rs) | 0 | ||||
-rw-r--r-- | tests/serve_request.rs | 4 | ||||
-rw-r--r-- | tests/upload_files.rs | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/tests/auth.rs b/tests/auth.rs index cefc7ec..48f070e 100644 --- a/tests/auth.rs +++ b/tests/auth.rs @@ -1,5 +1,5 @@ -mod helpers; -use helpers::*; +mod fixtures; +use fixtures::*; #[rstest_parametrize( cli_auth_arg, client_username, client_password, diff --git a/tests/cli.rs b/tests/cli.rs index c021eb7..fe0f141 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -1,5 +1,5 @@ -mod helpers; -use helpers::*; +mod fixtures; +use fixtures::*; #[test] /// Show help and exit. diff --git a/tests/helpers.rs b/tests/fixtures/mod.rs index 3c5ad72..3c5ad72 100644 --- a/tests/helpers.rs +++ b/tests/fixtures/mod.rs diff --git a/tests/serve_request.rs b/tests/serve_request.rs index 10b2bfc..31b9b75 100644 --- a/tests/serve_request.rs +++ b/tests/serve_request.rs @@ -1,5 +1,5 @@ -mod helpers; -use helpers::*; +mod fixtures; +use fixtures::*; #[rstest] fn serves_requests_with_no_options(tmpdir: TempDir) -> Result<(), Error> { 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> { |