aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-01-24 01:42:29 -0300
committerEuAndreh <eu@euandre.org>2021-01-24 01:42:29 -0300
commita6e60d3c646b79c38143ca3aaf0deac3ce447677 (patch)
tree60aabf71c24b3b2ffd63084a55d1cb10e278596a
parentMakefile: Clean tests/test-profiles/ on "clean" target (diff)
downloadremembering-a6e60d3c646b79c38143ca3aaf0deac3ce447677.tar.gz
remembering-a6e60d3c646b79c38143ca3aaf0deac3ce447677.tar.xz
cli-opts.sh: Break long line
Diffstat (limited to '')
-rwxr-xr-xtests/cli-opts.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/cli-opts.sh b/tests/cli-opts.sh
index 5edbc17..7c177df 100755
--- a/tests/cli-opts.sh
+++ b/tests/cli-opts.sh
@@ -71,7 +71,11 @@ test_flags_without_required_argument() {
test_valid_options() {
OUT="$(mktemp)"
ERR="$(mktemp)"
- printf 'a\nb\nc\n' | sh remembering -p "always-unique-$(uuidgen)" -c 'head -n1' 1>"$OUT" 2>"$ERR"
+ printf 'a\nb\nc\n' | \
+ sh remembering \
+ -p "always-unique-$(uuidgen)" \
+ -c 'head -n1' \
+ 1>"$OUT" 2>"$ERR"
STATUS=$?
assert_status 0
if [ "$(cat "$OUT")" != 'a' ]; then