We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo test
1 parent 2ed5ce6 commit c8eb725Copy full SHA for c8eb725
src/lib.rs
@@ -31,6 +31,9 @@
31
//! [`wait_for_click()`](struct.Turtle.html#method.wait_for_click) to wait for the user to click
32
//! anywhere on the screen before proceeding.
33
34
+#[cfg(all(test, not(feature = "test")))]
35
+compile_error!("Make sure you run tests with `cargo test --features test`");
36
+
37
#[macro_use]
38
extern crate serde_derive;
39
0 commit comments