Skip to content

Commit b97f53f

Browse files
committed
Fix tests for 'fudge'
1 parent 0fccf4e commit b97f53f

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

t/02-version.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ plan 8;
33
is 2**2, 4;
44
#?v6.0.0
55
is 2+2, 4;
6-
#?v6.0.5 'GH issue #xyz'
6+
#?v6.0.5+ 'GH issue #xyz'
77
{
88
is "Life, the Universe, and Everything".WHY, 42;
99
is 42.WHAT, Int, 'some reason';
1010
}
1111
#?v6.0.0..v6.0.2 2
1212
is 2-2, 0;
1313
is 3*4, 12;
14-
#?v6.0.0..*
14+
#?v6.0.1..*
1515
is 2-2, 0;
1616
is 3*4, 12;

t/02-version.out_v6.0.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plan 8;
33
is 2**2, 4;
44
#?v6.0.0
55
is 2+2, 4;
6-
#?v6.0.5 'GH issue #xyz'
6+
#?v6.0.5+ 'GH issue #xyz'
77
skip('GH issue #xyz', 2);# {
88
# is "Life, the Universe, and Everything".WHY, 42;
99
# is 42.WHAT, Int, 'some reason';

t/02-version.out_v6.0.3

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ plan 8;
22

33
is 2**2, 4;
44
#?v6.0.0
5-
is 2+2, 4;
6-
#?v6.0.5 'GH issue #xyz'
5+
skip('Version v6.0.0 required', 1); # { is 2+2, 4;
6+
# }
7+
#?v6.0.5+ 'GH issue #xyz'
78
skip('GH issue #xyz', 2);# {
89
# is "Life, the Universe, and Everything".WHY, 42;
910
# is 42.WHAT, Int, 'some reason';

t/02-version.out_v6.1.0

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ plan 8;
22

33
is 2**2, 4;
44
#?v6.0.0
5-
is 2+2, 4;
6-
#?v6.0.5 'GH issue #xyz'
5+
skip('Version v6.0.0 required', 1); # { is 2+2, 4;
6+
# }
7+
#?v6.0.5+ 'GH issue #xyz'
78
{
89
is "Life, the Universe, and Everything".WHY, 42;
910
is 42.WHAT, Int, 'some reason';

0 commit comments

Comments
 (0)