move specified values size testing entirely into stylo_tests

This change means that stylo_tests doesn't depend on a version of the
style crate with the `testing` feature defined.
This commit is contained in:
Nathan Froyd 2017-08-04 08:34:36 -04:00
parent e962ac365b
commit 018968877a
6 changed files with 54 additions and 48 deletions

View file

@ -12,8 +12,3 @@ size_of_test!(test_size_of_property_declaration, properties::PropertyDeclaration
// This is huge, but we allocate it on the stack and then never move it,
// we only pass `&mut SourcePropertyDeclaration` references around.
size_of_test!(test_size_of_parsed_declaration, properties::SourcePropertyDeclaration, 576);
#[test]
fn size_of_specified_values() {
::style::properties::test_size_of_specified_values();
}