summaryrefslogtreecommitdiff
path: root/test/lib/completions/mr.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/completions/mr.exp')
-rw-r--r--test/lib/completions/mr.exp46
1 files changed, 46 insertions, 0 deletions
diff --git a/test/lib/completions/mr.exp b/test/lib/completions/mr.exp
new file mode 100644
index 00000000..d7d41bb6
--- /dev/null
+++ b/test/lib/completions/mr.exp
@@ -0,0 +1,46 @@
+proc setup {} {
+ save_env
+}
+
+
+proc teardown {} {
+ assert_env_unmodified
+}
+
+setup
+
+assert_complete_any "mr "
+sync_after_int
+
+# Some versions require man to be around for useful output.
+if {[assert_exec {man -h} "" "" "unsupported"]} {
+
+ assert_complete_any "mr --"
+ sync_after_int
+
+ assert_complete {"foo"} "mr -c $::srcdir/fixtures/shared/default/foo.d/"
+ sync_after_int
+
+ assert_complete {"bar bar.d/" "foo.d/"} "mr -d $::srcdir/fixtures/shared/default/"
+ sync_after_int
+
+ assert_complete {"bar" "bar bar.d/" "foo" "foo.d/"} "mr bootstrap $::srcdir/fixtures/shared/default/"
+ sync_after_int
+
+ # Disabled for now; "clean" doesn't exist before mr 1.20141023
+ #assert_complete "-f" "mr clean -"
+ #sync_after_int
+
+ assert_complete "-m" "mr commit -"
+ sync_after_int
+
+ assert_no_complete "mr status "
+ sync_after_int
+
+ # Disabled temporarily: suggesting all commands produces too much output for
+ # test suite.
+ #assert_complete_any "mr run "
+ #sync_after_int
+}
+
+teardown