summaryrefslogtreecommitdiffstats
path: root/test/run_fuzzy_test.sh
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-06-18 20:54:29 +0200
committerDave Davenport <qball@gmpclient.org>2016-06-18 20:54:29 +0200
commit03239cb9898211c6f9537c23d6195ebce6d0efaf (patch)
tree521ea4b34ccd34b0124b56ceab4f1a4d4608cbc5 /test/run_fuzzy_test.sh
parent7a2435a23b97a546330b80c468a7446ef128fd6b (diff)
Remove fuzzy matching option.
Diffstat (limited to 'test/run_fuzzy_test.sh')
-rwxr-xr-xtest/run_fuzzy_test.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/run_fuzzy_test.sh b/test/run_fuzzy_test.sh
deleted file mode 100755
index b055b328..00000000
--- a/test/run_fuzzy_test.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-
-echo -en "nooty\naap\nnoot\nmies" | rofi -fuzzy -no-regex -dmenu > output.txt &
-RPID=$!
-
-# send enter.
-sleep 5;
-xdotool type 'nty'
-sleep 0.4
-xdotool key Return
-
-# Get result, kill xvfb
-wait ${RPID}
-RETV=$?
-OUTPUT=$(cat output.txt)
-if [ "${OUTPUT}" != 'nooty' ]
-then
- echo "Got: '${OUTPUT}' expected 'nooty'"
- exit 1
-fi
-
-exit ${RETV}