summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorToby Inkster <mail@tobyinkster.co.uk>2014-08-18 13:12:02 +0100
committerToby Inkster <mail@tobyinkster.co.uk>2014-08-18 13:12:02 +0100
commit8ba1da2b2987c89ae3ba08ebcbaf75086c53671a (patch)
tree9d57663b75767336e0ab942c1e20dd5fc4b539dd /t
parent852a460b7093bda453faa2a498d4d7f47189ad63 (diff)
this is now handled by Moo, which doesn't throw that error
Diffstat (limited to 't')
-rw-r--r--t/07coerce1.t16
1 files changed, 8 insertions, 8 deletions
diff --git a/t/07coerce1.t b/t/07coerce1.t
index e8dad36..156c42b 100644
--- a/t/07coerce1.t
+++ b/t/07coerce1.t
@@ -35,13 +35,13 @@ is(
3,
);
-like(
- exception {
- package Bar;
- use Moo; use MooX::late;
- has attr => (is => 'ro', isa => $Int->no_coercions, coerce => 1);
- },
- qr{^Invalid coerce '1'},
-);
+#like(
+# exception {
+# package Bar;
+# use Moo; use MooX::late;
+# has attr => (is => 'ro', isa => $Int->no_coercions, coerce => 1);
+# },
+# qr{^Invalid coerce '1'},
+#);
done_testing;