From: Dave Rolsky Date: Fri, 27 Mar 2009 21:11:39 +0000 (-0500) Subject: No point in running this twice since accessors are always inlined X-Git-Tag: 0.73_01~48 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ded5f6962c261c7ef7d135d2fb994ac341c56fbf;p=gitmo%2FMoose.git No point in running this twice since accessors are always inlined --- diff --git a/t/040_type_constraints/022_custom_type_errors.t b/t/040_type_constraints/022_custom_type_errors.t index 3b4b4b2..c3599b4 100644 --- a/t/040_type_constraints/022_custom_type_errors.t +++ b/t/040_type_constraints/022_custom_type_errors.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 18; +use Test::More tests => 9; use Test::Exception; { @@ -25,40 +25,35 @@ use Test::Exception; ); } -run_tests(); -Animal->meta->make_immutable; -run_tests(); +lives_ok { my $goat = Animal->new( leg_count => 4 ) } +'... no errors thrown, value is good'; +lives_ok { my $spider = Animal->new( leg_count => 8 ) } +'... no errors thrown, value is good'; -sub run_tests { - lives_ok { my $goat = Animal->new( leg_count => 4 ) } - '... no errors thrown, value is good'; - lives_ok { my $spider = Animal->new( leg_count => 8 ) } - '... no errors thrown, value is good'; +throws_ok { my $fern = Animal->new( leg_count => 0 ) } +qr/This number \(0\) is not less than ten!/, + 'gave custom supertype error message on new'; - throws_ok { my $fern = Animal->new( leg_count => 0 ) } - qr/This number \(0\) is not less than ten!/, - 'gave custom supertype error message on new'; +throws_ok { my $centipede = Animal->new( leg_count => 30 ) } +qr/This number \(30\) is not less than ten!/, + 'gave custom subtype error message on new'; - throws_ok { my $centipede = Animal->new( leg_count => 30 ) } - qr/This number \(30\) is not less than ten!/, - 'gave custom subtype error message on new'; +my $chimera; +lives_ok { $chimera = Animal->new( leg_count => 4 ) } +'... no errors thrown, value is good'; - my $chimera; - lives_ok { $chimera = Animal->new( leg_count => 4 ) } - '... no errors thrown, value is good'; +throws_ok { $chimera->leg_count(0) } +qr/This number \(0\) is not less than ten!/, + 'gave custom supertype error message on set to 0'; - throws_ok { $chimera->leg_count(0) } - qr/This number \(0\) is not less than ten!/, - 'gave custom supertype error message on set to 0'; +throws_ok { $chimera->leg_count(16) } +qr/This number \(16\) is not less than ten!/, + 'gave custom subtype error message on set to 16'; - throws_ok { $chimera->leg_count(16) } - qr/This number \(16\) is not less than ten!/, - 'gave custom subtype error message on set to 16'; +my $gimp = eval { Animal->new() }; +is( $@, '', '... no errors thrown, value is good' ); - my $gimp = eval { Animal->new() }; - is( $@, '', '... no errors thrown, value is good' ); +throws_ok { $gimp->leg_count } +qr/This number \(0\) is not less than ten!/, + 'gave custom supertype error message on lazy set to 0'; - throws_ok { $gimp->leg_count } - qr/This number \(0\) is not less than ten!/, - 'gave custom supertype error message on lazy set to 0'; -}