summaryrefslogtreecommitdiffstats
path: root/src/test_helpers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test_helpers.rs')
-rw-r--r--src/test_helpers.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test_helpers.rs b/src/test_helpers.rs
index 6850d6e..23f7f89 100644
--- a/src/test_helpers.rs
+++ b/src/test_helpers.rs
@@ -1,8 +1,11 @@
pub(crate) mod builders;
mod create_commit;
+mod create_event_reader;
mod create_invalid_utf;
+mod create_test_keybindings;
pub(crate) mod mocks;
mod shared;
+mod with_event_handler;
mod with_git_config;
mod with_temp_bare_repository;
mod with_temp_repository;
@@ -11,7 +14,10 @@ pub(crate) static JAN_2021_EPOCH: i64 = 1_609_459_200;
pub(crate) use self::{
create_commit::{create_commit, CreateCommitOptions},
+ create_event_reader::create_event_reader,
create_invalid_utf::invalid_utf,
+ create_test_keybindings::create_test_keybindings,
+ with_event_handler::{with_event_handler, EventHandlerTestContext},
with_git_config::with_git_config,
with_temp_bare_repository::with_temp_bare_repository,
with_temp_repository::with_temp_repository,