Move gfx unit tests to the unit_tests crate.

This commit is contained in:
Simon Sapin 2015-04-07 17:04:40 +02:00 committed by Josh Matthews
parent 6d5406efc1
commit e0b98a35c4
6 changed files with 168 additions and 160 deletions

View file

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