summaryrefslogtreecommitdiffstats
path: root/src/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.rs')
-rw-r--r--src/input.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/input.rs b/src/input.rs
index f74f182..a330813 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -8,8 +8,6 @@
//! these utilities are not tested, and often are optimized for developer experience than
//! performance should only be used in test code.
-mod custom_event;
-mod custom_key_binding;
mod event;
mod event_handler;
mod event_provider;
@@ -17,15 +15,13 @@ mod input_options;
mod key_bindings;
mod key_event;
mod standard_event;
-#[cfg(not(tarpaulin_include))]
+#[cfg(test)]
pub(crate) mod testutil;
mod thread;
pub(crate) use crossterm::event::{KeyCode, KeyModifiers, MouseEvent, MouseEventKind};
pub(crate) use self::{
- custom_event::CustomEvent,
- custom_key_binding::CustomKeybinding,
event::Event,
event_handler::EventHandler,
event_provider::{read_event, EventReaderFn},