diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-25 11:58:16 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-25 11:58:16 +0100 |
commit | aef63bfecb7731c0307cc65eab0b9a06b8a7363d (patch) | |
tree | 8455d54be4fd4008ac593fae5e9e9608198a61b5 /src | |
parent | 96a13690f8552386bb183ebc01418774047ebbfc (diff) |
feat: add argument matching
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,11 +1,14 @@ //! Mocking library supporting non-static generics. #![deny(clippy::all, clippy::pedantic, missing_docs)] +pub use predicates::prelude::*; pub use ridicule_macros::mock; #[doc(hidden)] pub mod __private { + pub use predicates::BoxPredicate; + pub mod type_id { #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] |