diff --git a/src/reporter/ui/json/mod.rs b/src/reporter/ui/json/mod.rs index 0596d78b..5f9b9967 100644 --- a/src/reporter/ui/json/mod.rs +++ b/src/reporter/ui/json/mod.rs @@ -8,7 +8,16 @@ use std::sync::{Arc, Mutex}; use storyteller::EventHandler; #[cfg(test)] -mod testing; +mod test_find; + +#[cfg(test)] +mod test_set; + +#[cfg(test)] +mod test_show; + +#[cfg(test)] +mod test_verify; pub struct JsonHandler { writer: Arc>, diff --git a/src/reporter/ui/json/testing/find.rs b/src/reporter/ui/json/test_find.rs similarity index 100% rename from src/reporter/ui/json/testing/find.rs rename to src/reporter/ui/json/test_find.rs diff --git a/src/reporter/ui/json/testing/set.rs b/src/reporter/ui/json/test_set.rs similarity index 100% rename from src/reporter/ui/json/testing/set.rs rename to src/reporter/ui/json/test_set.rs diff --git a/src/reporter/ui/json/testing/show.rs b/src/reporter/ui/json/test_show.rs similarity index 100% rename from src/reporter/ui/json/testing/show.rs rename to src/reporter/ui/json/test_show.rs diff --git a/src/reporter/ui/json/testing/verify.rs b/src/reporter/ui/json/test_verify.rs similarity index 100% rename from src/reporter/ui/json/testing/verify.rs rename to src/reporter/ui/json/test_verify.rs diff --git a/src/reporter/ui/json/testing/mod.rs b/src/reporter/ui/json/testing/mod.rs deleted file mode 100644 index a1746a6d..00000000 --- a/src/reporter/ui/json/testing/mod.rs +++ /dev/null @@ -1,4 +0,0 @@ -mod find; -mod set; -mod show; -mod verify;