summaryrefslogtreecommitdiffstats
path: root/src/process/tests.rs
diff options
context:
space:
mode:
authorTim Oram <dev@mitmaro.ca>2021-06-20 11:16:16 -0230
committerTim Oram <dev@mitmaro.ca>2021-06-20 11:48:55 -0230
commit916ed944d2861ffbd134f0010445023842bcaeaf (patch)
treee00e275b46a2d78ac516320e2ac684675f1f0c5d /src/process/tests.rs
parentd31ead2da32c28700494622b12de0812a3266516 (diff)
Breakout the module system from the process module
This decouples the module system from the process module, this allows other modules to not depend on the process module, which really should not be depended on by the other modules.
Diffstat (limited to 'src/process/tests.rs')
-rw-r--r--src/process/tests.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/process/tests.rs b/src/process/tests.rs
index 1378eb6..dfe531a 100644
--- a/src/process/tests.rs
+++ b/src/process/tests.rs
@@ -8,6 +8,7 @@ use crate::{
display::{testutil::CrossTerm, Display, Size},
error::Error,
input::InputOptions,
+ module::Module,
process::testutil::process_module_test,
view::ViewData,
window_size_error::WindowSizeError,