summaryrefslogtreecommitdiff
path: root/testing/tests/integration_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests/integration_test.rs')
-rw-r--r--testing/tests/integration_test.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/tests/integration_test.rs b/testing/tests/integration_test.rs
index e0dbe08..ce04ce3 100644
--- a/testing/tests/integration_test.rs
+++ b/testing/tests/integration_test.rs
@@ -1,7 +1,9 @@
use testing;
+mod common;
#[test]
fn it_adds_two() {
- assert_eq!(4, testing::add_two(2));
+ common::setup();
+ assert_eq!(4, testing::add_two(2));
}