summaryrefslogtreecommitdiff
path: root/test/lib/completions/export.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/completions/export.exp')
-rw-r--r--test/lib/completions/export.exp55
1 files changed, 0 insertions, 55 deletions
diff --git a/test/lib/completions/export.exp b/test/lib/completions/export.exp
deleted file mode 100644
index 84cb9170..00000000
--- a/test/lib/completions/export.exp
+++ /dev/null
@@ -1,55 +0,0 @@
-proc setup {} {
- save_env
-}
-
-
-proc teardown {} {
- assert_env_unmodified {
- /OLDPWD=/d
- }
-}
-
-
-setup
-
-
-assert_complete_any "export BASH"
-sync_after_int
-
-
-assert_complete_any "export -n BASH"
-sync_after_int
-
-
-assert_no_complete "export -p "
-sync_after_int
-
-
-assert_complete_dir {bar "bar bar.d/" foo foo.d/} "export FOO=" \
- fixtures/shared/default
-sync_after_int
-
-
-assert_complete_dir {foo foo.d/} "export FOO=f" fixtures/shared/default "" \
- -expect-cmd-minus f
-sync_after_int
-
-
-# Functions: _export, _expand, ...
-assert_complete_any "export -fn _ex"
-sync_after_int
-
-
-assert_complete_any "export -f -n _ex"
-sync_after_int
-
-
-assert_complete_any "export FOO=\$BASH"
-sync_after_int
-
-
-assert_complete_any "export -"
-sync_after_int
-
-
-teardown