summaryrefslogtreecommitdiffstats
path: root/t/000-load.t
diff options
context:
space:
mode:
Diffstat (limited to 't/000-load.t')
-rw-r--r--t/000-load.t7
1 files changed, 2 insertions, 5 deletions
diff --git a/t/000-load.t b/t/000-load.t
index 23f1e87..5208130 100644
--- a/t/000-load.t
+++ b/t/000-load.t
@@ -9,10 +9,7 @@ with 'MooseX::Role::Matcher';
package main;
my $foo = Foo->new;
-SKIP: {
- skip "MooseX::Role::Parameterized doesn't support does yet", 1;
- ok($foo->does('MooseX::Role::Matcher'),
- 'role consumption works');
-};
+ok($foo->does('MooseX::Role::Matcher'),
+ 'role consumption works');
ok($foo->can('match'),
'provided method exists');