diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-26 16:30:19 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-26 16:37:54 +0200 |
commit | 7f9294869afd07e096e73a45e6a101b8970a0e6e (patch) | |
tree | 90705756cbd50fb81c964812717738109379fbbb /src | |
parent | 9233c481d61271ee24b97fcb1820b459810e074c (diff) |
feat: add automock attribute
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ #![deny(clippy::all, clippy::pedantic, missing_docs)] pub use predicates::prelude::*; -pub use ridicule_macros::mock; +pub use ridicule_macros::{automock, mock}; #[doc(hidden)] pub mod __private |