12 lines
424 B
Rust
12 lines
424 B
Rust
// Having common appear in the test results with `running 0 tests`
|
|
// is suboptimal. To avoid this, make a file `tests/common/mod.rs`
|
|
|
|
// Files in the subdirectories of the tests directory don't get compiled
|
|
// as separate crates or have sections in the test output.
|
|
//
|
|
// Can use this file from any of the integration test files as a module.
|
|
|
|
pub fn setup() {
|
|
// setup code for specific library's tests would go here
|
|
}
|