1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! This library provides miscellaneous utility functions for unit and
//! integration tests in Rust.
//!
//! # Crate Features
//!
//! Most crate features are enabled by default. The only exception are
//! overly-specific features that are costly to build.
//!
//! Not enabled by default:
//!
//! - `server`:
//! - Enables support for [`TestServer`].
//! - Includes the [`warp`] and [`tokio`] re-exports.
//!
//! All other features are enabled by default:
//!
//! - `diff`: support for the text diff functions.
//! - `exec`: support for the binary execution functions.
//! - `temp`: helpers for managing temporary directories and files.
//! - `testdata`: support for file based tests.
//! - `text`: text utility functions.
//!
//! To disable the default features and opt into specific ones, change the
//! dependency in your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! tux = { version = "...", default-features = false, features = ["..."] }
//! ```
//!
pub use *;
pub use *;
pub use *;
pub use *;