Index: insta-cmd/src/bin/hello.rs
===================================================================
--- insta-cmd.orig/src/bin/hello.rs
+++ insta-cmd/src/bin/hello.rs
@@ -1,16 +1,3 @@
 fn main() {
     println!("Hello Bin!");
 }
-
-#[test]
-fn test_cli() {
-    use insta_cmd::{assert_cmd_snapshot, get_cargo_bin, Command};
-    assert_cmd_snapshot!(Command::new(get_cargo_bin("hello")), @r###"
-    success: true
-    exit_code: 0
-    ----- stdout -----
-    Hello Bin!
-
-    ----- stderr -----
-    "###);
-}
Index: insta-cmd/examples/hello.rs
===================================================================
--- insta-cmd.orig/examples/hello.rs
+++ insta-cmd/examples/hello.rs
@@ -1,16 +1,3 @@
 fn main() {
     println!("Hello Example!");
 }
-
-#[test]
-fn test_cli() {
-    use insta_cmd::{assert_cmd_snapshot, get_cargo_example, Command};
-    assert_cmd_snapshot!(Command::new(get_cargo_example("hello")), @r###"
-    success: true
-    exit_code: 0
-    ----- stdout -----
-    Hello Example!
-
-    ----- stderr -----
-    "###);
-}
