summaryrefslogtreecommitdiff
path: root/tests/cli_test_utils/mod.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-07-06 15:22:44 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-07-06 15:22:44 +0200
commit84be3c9ae7a1b6a86f3a4ccc58e48eab46466b22 (patch)
tree98aa8b470d31dab4d0c93f6887602391a67f505e /tests/cli_test_utils/mod.rs
parente18a928db5916fce43c35dff585072dace0da7e0 (diff)
Move test helper functions into their own helper module
Diffstat (limited to 'tests/cli_test_utils/mod.rs')
-rw-r--r--tests/cli_test_utils/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/cli_test_utils/mod.rs b/tests/cli_test_utils/mod.rs
new file mode 100644
index 0000000..7aaf1db
--- /dev/null
+++ b/tests/cli_test_utils/mod.rs
@@ -0,0 +1,5 @@
+pub mod context;
+pub mod git;
+
+pub use context::*;
+pub use git::*;