diff options
Diffstat (limited to 'tests/rustdoc/ensure-src-link.rs')
-rw-r--r-- | tests/rustdoc/ensure-src-link.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/rustdoc/ensure-src-link.rs b/tests/rustdoc/ensure-src-link.rs new file mode 100644 index 000000000..c65387080 --- /dev/null +++ b/tests/rustdoc/ensure-src-link.rs @@ -0,0 +1,6 @@ +#![crate_name = "foo"] + +// This test ensures that the [src] link is present on traits items. + +// @has foo/trait.Iterator.html '//*[@id="method.zip"]//a[@class="srclink rightside"]' "source" +pub use std::iter::Iterator; |