summaryrefslogtreecommitdiffstats
path: root/test/run_fuzzy_test.sh
diff options
context:
space:
mode:
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}