fluent_test/backend/matchers/
mod.rs

1pub mod boolean;
2pub mod collection;
3pub mod equality;
4pub mod hashmap;
5pub mod numeric;
6pub mod option;
7pub mod result;
8pub mod string;
9
10// Instead of glob imports, we explicitly export the trait names
11// to avoid conflicts and ambiguities
12pub use boolean::BooleanMatchers;
13pub use collection::{CollectionExtensions, CollectionMatchers};
14pub use equality::EqualityMatchers;
15pub use hashmap::HashMapMatchers;
16pub use numeric::NumericMatchers;
17pub use option::OptionMatchers;
18pub use result::ResultMatchers;
19pub use string::StringMatchers;