summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-10-27 20:28:02 +0200
committerLars Wirzenius <liw@liw.fi>2015-10-27 20:28:02 +0200
commit2b2583ff49e5c29f0a53405c7392e5fbaf6f0652 (patch)
tree52bcfba5d57e3f52de92f036dc5ecbca0714531d
parent3627b744c1b09991db57342e48c373dfd284c435 (diff)
downloadcmdtest-2b2583ff49e5c29f0a53405c7392e5fbaf6f0652.tar.gz
Remove now-unneeded tests for yarn
-rwxr-xr-xyarn.tests/warn-if-empty.script10
-rwxr-xr-xyarn.tests/warn-if-missing-step.script10
2 files changed, 0 insertions, 20 deletions
diff --git a/yarn.tests/warn-if-empty.script b/yarn.tests/warn-if-empty.script
deleted file mode 100755
index 03be52d..0000000
--- a/yarn.tests/warn-if-empty.script
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-touch "$DATADIR/empty.yarn"
-
-# The grep below will fail unless the string exists, thereby failing the
-# entire test.
-./run-yarn --no-quiet --log=/dev/stdout "$DATADIR/empty.yarn" 2>&1 |
- grep 'No scenario code blocks' > /dev/null
diff --git a/yarn.tests/warn-if-missing-step.script b/yarn.tests/warn-if-missing-step.script
deleted file mode 100755
index c1ec4af..0000000
--- a/yarn.tests/warn-if-missing-step.script
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-cat <<EOF > "$DATADIR/missing-step.yarn"
- SCENARIO missing step
- THEN missing step
-EOF
-
-./run-yarn --allow-missing-step "$DATADIR/missing-step.yarn"