Skip to content

Commit

Permalink
makesure_stable should not be changed before the release #60 : make t…
Browse files Browse the repository at this point in the history
…ests less rely on version number
  • Loading branch information
xonixx committed Sep 29, 2021
1 parent 891009b commit b38c4a3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions tests/0_basic.tush
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@

$ cd "$MYDIR"; ./$MAKESURE -v; ./$MAKESURE --version
| 0.9.10
| 0.9.10
$ cd "$MYDIR"; ./$MAKESURE -v | awk -v "v=$NEXT_VERSION" '{ sub(v,"XXX") } 1'
| XXX

$ cd "$MYDIR/tests/emptydir"; ../../$MAKESURE -v
| 0.9.10
$ cd "$MYDIR"; ./$MAKESURE --version | awk -v "v=$NEXT_VERSION" '{ sub(v,"XXX") } 1'
| XXX

$ cd "$MYDIR/tests/emptydir"; ../../$MAKESURE -h
| makesure ver. 0.9.10
$ cd "$MYDIR/tests/emptydir"; ../../$MAKESURE -v | awk -v "v=$NEXT_VERSION" '{ sub(v,"XXX") } 1'
| XXX

$ cd "$MYDIR/tests/emptydir"; ../../$MAKESURE -h | awk -v "v=$NEXT_VERSION" '{ sub(v,"XXX") } 1'
| makesure ver. XXX
| Usage: makesure [options...] [-f buildfile] [goals...]
| -f,--file buildfile
| set buildfile to use (default Makesurefile)
Expand Down

0 comments on commit b38c4a3

Please sign in to comment.