summaryrefslogtreecommitdiff
path: root/testing/tests/integration_test.rs
blob: ce04ce37d923c6fc81230d7c29bf8f8034fc0f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
use testing;
mod common;

#[test]
fn it_adds_two() {
    common::setup();
    assert_eq!(4, testing::add_two(2));
}