diff options
| author | bors <bors@rust-lang.org> | 2017-10-03 19:38:33 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-10-03 19:38:33 +0000 |
| commit | 4502e2aa9c28d8caa610fc1815fd9c5b5a16e91c (patch) | |
| tree | 50ce30eae6637284c0868cf3f803c0648f95a61b /src/test/rustdoc | |
| parent | 835e3e50781af375e6fef2d17e1bfa50d4e4aba3 (diff) | |
| parent | 5b59c4db673d05ee71252d0d7579f325f3b726f8 (diff) | |
| download | rust-4502e2aa9c28d8caa610fc1815fd9c5b5a16e91c.tar.gz rust-4502e2aa9c28d8caa610fc1815fd9c5b5a16e91c.zip | |
Auto merge of #44949 - QuietMisdreavus:rustdoctest-dirs, r=nikomatsakis
let htmldocck.py check for directories Since i messed this up during https://github.com/rust-lang/rust/pull/44613, i wanted to codify this into the rustdoc tests to make sure that doesn't happen again.
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/inline_local/glob-private.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/rustdoc/inline_local/glob-private.rs b/src/test/rustdoc/inline_local/glob-private.rs index b5e256dfdce..ecc754f012e 100644 --- a/src/test/rustdoc/inline_local/glob-private.rs +++ b/src/test/rustdoc/inline_local/glob-private.rs @@ -34,16 +34,19 @@ pub use mod1::*; // @has foo/struct.Mod2Public.html // @!has foo/struct.Mod2Private.html +// @has-dir foo/mod1 // @!has foo/mod1/index.html // @has foo/mod1/struct.Mod1Public.html // @!has foo/mod1/struct.Mod1Private.html // @!has foo/mod1/struct.Mod2Public.html // @!has foo/mod1/struct.Mod2Private.html +// @has-dir foo/mod1/mod2 // @!has foo/mod1/mod2/index.html // @has foo/mod1/mod2/struct.Mod2Public.html // @!has foo/mod1/mod2/struct.Mod2Private.html +// @!has-dir foo/mod2 // @!has foo/mod2/index.html // @!has foo/mod2/struct.Mod2Public.html // @!has foo/mod2/struct.Mod2Private.html |
