expect_json/
lib.rs

1#![forbid(unsafe_code)]
2#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
3
4pub(crate) mod internals;
5
6#[allow(non_upper_case_globals)]
7pub const expect: Expect = Expect::new();
8
9mod expects;
10pub use self::expects::*;
11
12mod expect_json_eq_error;
13pub use self::expect_json_eq_error::*;
14
15mod expect_json_eq;
16pub use self::expect_json_eq::*;
17
18pub mod testing;