about summary refs log tree commit diff
path: root/src/test/rustdoc/codeblock-title.rs
diff options
context:
space:
mode:
authorJake Degen <jakob@degen.com>2020-06-18 08:48:37 -0400
committerJake Degen <jakob@degen.com>2020-06-18 11:12:36 -0400
commitb805f2c4dce9d9fb25ea48d6290d60f8546df64f (patch)
tree3e3ea1b8301a3676525a621642c8ad4afae61890 /src/test/rustdoc/codeblock-title.rs
parente55d3f9c5213fe1a25366450127bdff67ad1eca2 (diff)
downloadrust-b805f2c4dce9d9fb25ea48d6290d60f8546df64f.tar.gz
rust-b805f2c4dce9d9fb25ea48d6290d60f8546df64f.zip
Added tooltip for should_panic code examples.
Previously, compile_fail and ignore code examples displayed a tooltip
indicating this in the documentation. This tooltip has now also been
added to should_panic examples.
Diffstat (limited to 'src/test/rustdoc/codeblock-title.rs')
-rw-r--r--src/test/rustdoc/codeblock-title.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/rustdoc/codeblock-title.rs b/src/test/rustdoc/codeblock-title.rs
index 2f77929c74e..2157a4d5389 100644
--- a/src/test/rustdoc/codeblock-title.rs
+++ b/src/test/rustdoc/codeblock-title.rs
@@ -4,6 +4,7 @@
 
 // @has foo/fn.bar.html '//*[@class="tooltip compile_fail"]/span' "This example deliberately fails to compile"
 // @has foo/fn.bar.html '//*[@class="tooltip ignore"]/span' "This example is not tested"
+// @has foo/fn.bar.html '//*[@class="tooltip should_panic"]/span' "This example panics"
 
 /// foo
 ///
@@ -15,6 +16,10 @@
 /// goo();
 /// ```
 ///
+/// ```should_panic
+/// hoo();
+/// ```
+/// 
 /// ```
 /// let x = 0;
 /// ```