summaryrefslogtreecommitdiffstats
path: root/t/001_constructor_injection.t
diff options
context:
space:
mode:
Diffstat (limited to 't/001_constructor_injection.t')
-rw-r--r--t/001_constructor_injection.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/001_constructor_injection.t b/t/001_constructor_injection.t
index b6e03bc..471b731 100644
--- a/t/001_constructor_injection.t
+++ b/t/001_constructor_injection.t
@@ -3,7 +3,10 @@ use Test;
use Bread::Board;
-sub does_ok(Mu $var, Mu $type, $msg = ("The object does '" ~ $type.perl ~ "'")) {
+# TODO: doing anything at all with the type object for a role with required
+# methods is broken
+#sub does_ok(Mu $var, Mu $type, $msg = ("The object does '" ~ $type.perl ~ "'")) {
+sub does_ok(Mu $var, Mu $type, $msg = ("The object does [some role]")) {
ok($var.does($type), $msg);
}