Add a unit test for Fragment size

This commit is contained in:
Matt Brubeck 2016-03-29 08:11:59 -07:00
parent 37799a4025
commit 14e945f09a
6 changed files with 59 additions and 0 deletions

View file

@ -22,6 +22,7 @@ dependencies = [
"ipc-channel 0.2.1 (git+https://github.com/servo/ipc-channel)",
"layers 0.2.4 (git+https://github.com/servo/rust-layers)",
"layout 0.0.1",
"layout_tests 0.0.1",
"libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
@ -1083,6 +1084,13 @@ dependencies = [
"webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)",
]
[[package]]
name = "layout_tests"
version = "0.0.1"
dependencies = [
"layout 0.0.1",
]
[[package]]
name = "layout_traits"
version = "0.0.1"

View file

@ -24,6 +24,9 @@ image = "0.7"
[dev-dependencies.gfx_tests]
path = "../../tests/unit/gfx"
[dev-dependencies.layout_tests]
path = "../../tests/unit/layout"
[dev-dependencies.net_tests]
path = "../../tests/unit/net"