X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faccessors_wo.t;h=9fc2bcd05a919d4ec5b26a9f5530cf10a7c2024b;hb=ed6069878c2506fed25cf5dd71c4fa6e276b80da;hp=a4bab8ef471be9bacafa74dccf3ccd6407bb6f54;hpb=ba8c183b7c3d71a5b8fcd936916e80a7b87f7961;p=p5sagit%2FClass-Accessor-Grouped.git diff --git a/t/accessors_wo.t b/t/accessors_wo.t index a4bab8e..9fc2bcd 100644 --- a/t/accessors_wo.t +++ b/t/accessors_wo.t @@ -1,7 +1,9 @@ -use Test::More tests => 38; +use Test::More; use Test::Exception; use strict; use warnings; +no warnings 'once'; +use Config; use lib 't/lib'; # we test the pure-perl versions only, but allow overrides @@ -50,6 +52,10 @@ my $test_accessors = { lr2name => { custom_field => "lr2'field", }, + fieldname_torture => { + custom_field => join ('', map { chr($_) } (0..255) ), + is_xs => $use_xs, + }, }; for my $name (sort keys %$test_accessors) { @@ -72,18 +78,28 @@ for my $name (sort keys %$test_accessors) { my $wo_regex = $test_accessors->{$name}{is_xs} ? qr/Usage\:.+$name.*\(self, newvalue\)/ - : qr/cannot access the value of '\Q$field\E'/ + : qr/$name(:?_accessor)?\Q' cannot access its value (write-only attribute of class AccessorGroupsWO)/ ; # die on get via name/alias - throws_ok { - $obj->$name; - } $wo_regex; - - throws_ok { - $obj->$alias; - } $wo_regex; + { + local $TODO = "Class::XSAccessor emits broken error messages on 5.10 or -DDEBUGGING 5.8" + if ( + $test_accessors->{$name}{is_xs} + and + $] < '5.011' + and + ( $] > '5.009' or $Config{config_args} =~ /DEBUGGING/ ) + ); + + throws_ok { + $obj->$name; + } $wo_regex; + + throws_ok { + $obj->$alias; + } $wo_regex; + } }; -# important -1; \ No newline at end of file +done_testing unless $::SUBTESTING;