Move util crate unit tests into a new unit_tests crate

This commit is contained in:
Simon Sapin 2015-04-07 16:58:02 +02:00 committed by Josh Matthews
parent 3fb666cf60
commit 6d5406efc1
13 changed files with 222 additions and 183 deletions

4
tests/unit/lib.rs Normal file
View file

@ -0,0 +1,4 @@
extern crate geom;
extern crate util;
#[cfg(test)] #[path="util/mod.rs"] mod util_tests;