Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: remove "extern crate x" #341

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions tests/exec_unit_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
/// ! But as the tests require running an external executable, they need to be run
/// ! as integration tests so we can ensure that our testing-commandline binary
/// ! has been built.
extern crate findutils;
extern crate walkdir;

use std::env;
use std::fs::File;
use std::io::Read;
Expand Down
4 changes: 0 additions & 4 deletions tests/find_exec_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
/// ! But as the tests require running an external executable, they need to be run
/// ! as integration tests so we can ensure that our testing-commandline binary
/// ! has been built.
extern crate findutils;
extern crate tempfile;
extern crate walkdir;

use std::env;
use std::fs::File;
use std::io::Read;
Expand Down
3 changes: 0 additions & 3 deletions tests/xargs_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

/// ! This file contains integration tests for xargs, separate from the unit
/// ! tests so that testing-commandline can be built first.
extern crate findutils;
extern crate tempfile;

use std::io::{Seek, SeekFrom, Write};

use assert_cmd::Command;
Expand Down
Loading