summaryrefslogtreecommitdiff
path: root/tests/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cli.rs')
-rw-r--r--tests/cli.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/cli.rs b/tests/cli.rs
new file mode 100644
index 0000000..18d815e
--- /dev/null
+++ b/tests/cli.rs
@@ -0,0 +1,7 @@
+use assert_cmd::Command;
+
+#[test]
+fn shows_a_prompt() {
+ let mut cmd = Command::cargo_bin("shackle").unwrap();
+ cmd.assert().success().stdout(">");
+}