diff options
Diffstat (limited to 'tests/standard-version/testscript')
-rw-r--r-- | tests/standard-version/testscript | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/standard-version/testscript b/tests/standard-version/testscript new file mode 100644 index 0000000..4ee17cc --- /dev/null +++ b/tests/standard-version/testscript @@ -0,0 +1,20 @@ +# file : tests/standard-version/testscript +# license : MIT; see accompanying LICENSE file + +: invalid-arguments +: +{ + $* --is-snapshot 2>'error: missing version' == 3 : no-ver + $* '1.2.3' '1.0' 2>"error: unexpected argument '1.0'" == 3 : unexpected + $* '1.2' 2>"error: '.' expected after minor version" == 2 : no-minor +} + +$* --is-snapshot '1.2.3-a.1.12345.abcdef' == 0 : snapshot-yes +$* --is-snapshot '1.2.3-a.1' == 1 : snapshot-no +$* --is-not-snapshot '1.2.3-a.1' == 0 : not-snapshot-yes +$* --is-not-snapshot '1.2.3-a.1.12345.abcdef' == 1 : not-snapshot-no +$* --is-version 'abc' == 2 : version-no + +$* --is-not-final --is-alpha '1.2.3-a.1.12345.abcdef' == 0 : not-final-alpha +$* --is-beta --is-latest-snapshot '1.2.3-b.1.z' == 0 : beta-latest-snapshot +$* --is-not-beta --is-beta '1.2.3-b.1.z' == 1 : opposite |