Move Stylo unit tests out of tests/unit

This will allow writing `tests/unit/*` in the root `Cargo.toml` file
to designate Servo unit tests.
This commit is contained in:
Simon Sapin 2017-11-30 16:04:11 +01:00
parent 1a950d263a
commit 05a364c7b8
8 changed files with 2 additions and 2 deletions

View file

@ -33,4 +33,4 @@ style = {path = "../../components/style", features = ["gecko"]}
style_traits = {path = "../../components/style_traits"} style_traits = {path = "../../components/style_traits"}
[dev-dependencies] [dev-dependencies]
stylo_tests = {path = "../../tests/unit/stylo"} stylo_tests = {path = "./tests"}

View file

@ -32,7 +32,7 @@ mod parsing;
mod properties; mod properties;
mod rule_tree; mod rule_tree;
mod size_of; mod size_of;
#[path = "../stylo/specified_values.rs"] #[path = "../../../ports/geckolib/tests/specified_values.rs"]
mod specified_values; mod specified_values;
mod str; mod str;
mod stylesheets; mod stylesheets;