Ignore MYMETA.json
[gitmo/Mouse.git] / t / 300_immutable / 009_buildargs.t
index 6c1ca33..f2959a9 100644 (file)
@@ -1,16 +1,19 @@
 #!/usr/bin/perl
+# This is automatically generated by author/import-moose-test.pl.
+# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
+use t::lib::MooseCompat;
 
 use strict;
 use warnings;
 
-use Test::More tests => 14;
+use Test::More;
 
 {
     package Foo;
-    use Moose;
+    use Mouse;
 
     has bar => ( is => "rw" );
-    has baz => ( is => "rw" );    
+    has baz => ( is => "rw" );
 
     sub BUILDARGS {
         my ( $self, @args ) = @_;
@@ -21,14 +24,14 @@ use Test::More tests => 14;
     __PACKAGE__->meta->make_immutable;
 
     package Bar;
-    use Moose;
+    use Mouse;
 
     extends qw(Foo);
-    
+
     __PACKAGE__->meta->make_immutable;
 }
 
-foreach my $class qw(Foo Bar) {
+foreach my $class (qw(Foo Bar)) {
     is( $class->new->bar, undef, "no args" );
     is( $class->new( bar => 42 )->bar, 42, "normal args" );
     is( $class->new( 37 )->bar, 37, "single arg" );
@@ -41,7 +44,7 @@ foreach my $class qw(Foo Bar) {
         my $o = $class->new(42, baz => 47);
         is($o->bar, 42, '... got the right bar');
         is($o->baz, 47, '... got the right bar');
-    }    
+    }
 }
 
-
+done_testing;