Skip to content

Commit eebd95f

Browse files
committed
[v6.d REVIEW] Test .^ver gives Version object
Orig: feb3c86
1 parent 93c5290 commit eebd95f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

S12-introspection/meta-class.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ is Foo.REPR, 'P6opaque', '.REPR';
3535

3636
subtest { plan 3;
3737
my module M:ver<1.2.3>:auth<me> {};
38-
is M.^name, 'M', '.name is correct';
39-
is M.^ver, '1.2.3', '.ver is correct';
40-
is M.^auth, 'me', '.auth is correct';
38+
is M.^name, 'M', '.name is correct';
39+
is-deeply M.^ver, v1.2.3, '.ver is correct';
40+
is M.^auth, 'me', '.auth is correct';
4141
}, 'metamethods on a module';
4242

4343
# RT #128579

0 commit comments

Comments
 (0)