This is an automatically generated mail to inform you that tests are now available in t/spec/S12-enums/basic.t
commit 617050ace6fa545d39f257d3cae0d013939ad779 Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Mon Dec 28 22:33:32 2009 +0000 [t/spec] Test for RT 71460: Null PMC access git-svn-id: http://svn.pugscode.org/p...@29409 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S12-enums/basic.t b/t/spec/S12-enums/basic.t index eb4b91d..9c1a4aa 100644 --- a/t/spec/S12-enums/basic.t +++ b/t/spec/S12-enums/basic.t @@ -1,6 +1,6 @@ use v6; use Test; -plan 32; +plan *; # Very basic enum tests @@ -99,4 +99,12 @@ dies_ok({ my Color $c3 = "for the fail" }, 'enum as a type enforces checks'); ok Color.pick(2) == 2, '.pick(2) on enums'; } +#?rakudo skip 'RT 71460: Null PMC access' +{ + enum RT71460::Bug <rt71460 bug71460 ticket71460>; + is bug71460, 1, 'enum element of enum with double colons is in namespace'; +} + +done_testing; + # vim: ft=perl6