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