diff options
author | Tharre <tharre3@gmail.com> | 2015-07-13 15:01:47 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2015-07-13 15:33:43 +0200 |
commit | 54d6f97c895490e2699e560990b37df95f3d1d87 (patch) | |
tree | 902d7cfcb839195f84dce0507645e5cc6d6256f5 /tests/a--c,b--c | |
parent | 3493dac92c9da21823b39b53b808745859fb9950 (diff) | |
download | redo-54d6f97c895490e2699e560990b37df95f3d1d87.tar.gz redo-54d6f97c895490e2699e560990b37df95f3d1d87.tar.xz redo-54d6f97c895490e2699e560990b37df95f3d1d87.zip |
Replace custom test-suite with sharness
This should make the hole test-suite a bit more standard (by outputting TAP), as
well as making it easier to test redo in a controlled environment.
In contrast to bats, sharness requires no external dependencies.
Diffstat (limited to 'tests/a--c,b--c')
-rw-r--r-- | tests/a--c,b--c/a.do | 3 | ||||
-rw-r--r-- | tests/a--c,b--c/all.do | 10 | ||||
-rw-r--r-- | tests/a--c,b--c/b.do | 3 | ||||
-rw-r--r-- | tests/a--c,b--c/c.do | 1 |
4 files changed, 0 insertions, 17 deletions
diff --git a/tests/a--c,b--c/a.do b/tests/a--c,b--c/a.do deleted file mode 100644 index 34d0c7c..0000000 --- a/tests/a--c,b--c/a.do +++ /dev/null @@ -1,3 +0,0 @@ -redo-ifchange c - -echo -n "a" | cat - c > $3 diff --git a/tests/a--c,b--c/all.do b/tests/a--c,b--c/all.do deleted file mode 100644 index 6724b38..0000000 --- a/tests/a--c,b--c/all.do +++ /dev/null @@ -1,10 +0,0 @@ -. ../include.sh - -rm -rf a b c - -redo-ifchange a b - -assert "a--c,b--c" << ! -[ "$(cat a)" = "ac" ] && -[ "$(cat b)" = "bc" ] -! diff --git a/tests/a--c,b--c/b.do b/tests/a--c,b--c/b.do deleted file mode 100644 index fc555dd..0000000 --- a/tests/a--c,b--c/b.do +++ /dev/null @@ -1,3 +0,0 @@ -redo-ifchange c - -echo -n "b" | cat - c > $3 diff --git a/tests/a--c,b--c/c.do b/tests/a--c,b--c/c.do deleted file mode 100644 index 6a816ac..0000000 --- a/tests/a--c,b--c/c.do +++ /dev/null @@ -1 +0,0 @@ -echo -n "c" > $3 |