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]
mod test {
mod test_mat;
mod test_quat;
mod test_rot;
mod test_vec;
#[path = "test_mat.rs" ] mod mat;
#[path = "test_quat.rs"] mod quat;
#[path = "test_rot.rs" ] mod rot;
#[path = "test_vec.rs" ] mod vec;
}