2012-09-08 08:54:32 +00:00
|
|
|
#[link(name = "test_omath",
|
2012-09-07 14:17:26 +00:00
|
|
|
vers = "0.1",
|
|
|
|
author = "Brendan Zabarauskas")];
|
|
|
|
|
2012-09-08 08:54:32 +00:00
|
|
|
#[comment = "Unittests for omath"];
|
2012-09-07 14:17:26 +00:00
|
|
|
#[crate_type = "unittests"];
|
|
|
|
|
|
|
|
use std;
|
2012-09-08 08:54:32 +00:00
|
|
|
use omath;
|
2012-09-07 14:17:26 +00:00
|
|
|
|
|
|
|
mod test_mat;
|
2012-09-08 05:54:31 +00:00
|
|
|
mod test_math;
|
2012-09-07 14:17:26 +00:00
|
|
|
mod test_projection;
|
|
|
|
mod test_quat;
|
|
|
|
mod test_vec;
|