Re-define test mod names to remove the 'test_' prefix

This commit is contained in:
Brendan Zabarauskas 2013-01-29 16:33:09 +11:00
parent 0a4e19ba1e
commit 683ac4ad62

View file

@ -26,8 +26,8 @@ pub mod projection;
#[test] #[test]
mod test { mod test {
mod test_mat; #[path = "test_mat.rs" ] mod mat;
mod test_quat; #[path = "test_quat.rs"] mod quat;
mod test_rot; #[path = "test_rot.rs" ] mod rot;
mod test_vec; #[path = "test_vec.rs" ] mod vec;
} }