1extern crate test_crate;
2
3use test_crate::*;
4
5ok!(it_works);
6
7#[test]
8fn check_it_works() {
9    it_works();
10}
11