remove unneeded use of Test::Fatal
[gitmo/Moose.git] / t / 100_bugs / 019_moose_octal_defaults.t
index dc97e20..a05a170 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/env perl
-use Test::More tests => 10;
+use Test::More;
 
 {
     my $package = qq{
@@ -33,7 +33,7 @@ use lib qw(lib);
 has id => (
     isa     => 'Str',
     is      => 'ro',
-    default => 017600, 
+    default => 017600,
 );
 
 no Moose;
@@ -56,7 +56,7 @@ use lib qw(lib);
 has id => (
     isa     => 'Str',
     is      => 'ro',
-    default => 0xFF,  
+    default => 0xFF,
 );
 
 no Moose;
@@ -79,7 +79,7 @@ use lib qw(lib);
 has id => (
     isa     => 'Str',
     is      => 'ro',
-    default => '0xFF',  
+    default => '0xFF',
 );
 
 no Moose;
@@ -102,7 +102,7 @@ use lib qw(lib);
 has id => (
     isa     => 'Str',
     is      => 'ro',
-    default => '0 but true',  
+    default => '0 but true',
 );
 
 no Moose;
@@ -115,3 +115,5 @@ __PACKAGE__->meta->make_immutable;
     my $obj = Test::Moose::Go::Boom5->new;
     ::is( $obj->id, '0 but true', 'value is still the same' );
 }
+
+done_testing;