1
1
mirror of https://github.com/walles/moar.git synced 2024-08-17 16:00:22 +03:00
moar/manual-test.sh
2024-06-30 09:29:10 +02:00

39 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
set -e -o pipefail
# Test all permutations of the following:
# - Read from file vs from stdin
# - 'q' to quit vs 'v' to launch an editor
# - Terminal editor (nano) or GUI editor (code -w)
read -r -p "Press enter to start testing, then q to exit the pager"
clear
# With --trace we always get a non-zero exit code
./moar.sh --trace moar.sh || true
echo
read -r -p "Press enter to continue, then q to exit the pager"
clear
./moar.sh --trace <moar.sh || true
echo
read -r -p "Press enter to continue, then v to launch a terminal editor, then exit that"
clear
EDITOR=nano ./moar.sh --trace moar.sh || true
echo
read -r -p "Press enter to continue, then v to launch a terminal editor, then exit that"
clear
EDITOR=nano ./moar.sh --trace <moar.sh || true
echo
read -r -p "Press enter to continue, then v to launch a GUI editor, then exit that"
clear
EDITOR="code -w" ./moar.sh --trace moar.sh || true
echo
read -r -p "Press enter to continue, then v to launch a GUI editor, then exit that"
clear
EDITOR="code -w" ./moar.sh --trace <moar.sh || true