diff options
Diffstat (limited to 'testing/tests')
-rw-r--r-- | testing/tests/integration_test.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testing/tests/integration_test.rs b/testing/tests/integration_test.rs new file mode 100644 index 0000000..e0dbe08 --- /dev/null +++ b/testing/tests/integration_test.rs @@ -0,0 +1,7 @@ +use testing; + +#[test] +fn it_adds_two() { + assert_eq!(4, testing::add_two(2)); +} + |