stub for coercion test
John Napiorkowski [Fri, 24 Oct 2008 22:48:24 +0000 (22:48 +0000)]
t/07-coerce.t [new file with mode: 0644]

diff --git a/t/07-coerce.t b/t/07-coerce.t
new file mode 100644 (file)
index 0000000..a918c07
--- /dev/null
@@ -0,0 +1,23 @@
+BEGIN {
+       use strict;
+       use warnings;
+       use Test::More tests=>1;
+       use Test::Exception;
+}
+
+{
+    package Test::MooseX::Meta::TypeConstraint::Structured::Coerce;
+
+    use Moose;
+    use MooseX::Types::Structured qw(Dict Tuple);
+       use MooseX::Types::Moose qw(Int Str Object ArrayRef HashRef);
+       use MooseX::Types -declare => [qw(
+
+    )];
+    
+
+}
+
+
+
+