Move net::cookie unit tests into the unit_tests crate.

This commit is contained in:
Simon Sapin 2015-04-07 17:16:39 +02:00 committed by Josh Matthews
parent e0b98a35c4
commit 691222696e
7 changed files with 123 additions and 95 deletions

View file

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