Skip to content

Commit

Permalink
Update version stringification tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed Jul 12, 2012
1 parent e47e2da commit 593c77c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S02-literals/version.t
@@ -1,9 +1,9 @@
use v6;
use Test;

is v1.2.3, 'v1.2.3', 'version literal stringification round-trips';
is v1.2.3+, 'v1.2.3+', 'version literal stringification with + round-trips';
is v1.*.3, 'v1.*.3', 'version literal stringification with * round-trips';
is v1.2.3, '1.2.3', 'version literal stringification';
is v1.2.3+, '1.2.3+', 'version literal stringification';
is v1.*.3, '1.*.3', 'version literal stringification';
ok v1.2.3 eqv v1.2.3, 'eqv works on version literals (+)';
nok v5.2.3 eqv v1.2.3, 'eqv works on version literals (-)';
nok v1.2+ eqv v1.2, '+ makes a difference in eqv';
Expand Down

0 comments on commit 593c77c

Please sign in to comment.