X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fstrictures.t;h=4f6b020bf493dc317c84f0c70772075970949994;hb=9c44af2eb655b858caf45b8ab7b122105a0bce89;hp=aecf3326a80af9eedca28152c852806b6e4d778c;hpb=12b8f19b42aca2e4872678b720287e45e0ee2083;p=p5sagit%2Fstrictures.git diff --git a/t/strictures.t b/t/strictures.t index aecf332..4f6b020 100644 --- a/t/strictures.t +++ b/t/strictures.t @@ -47,11 +47,41 @@ SKIP: { sub Foo::new { 1 } chdir("t/smells-of-vcs"); local $strictures::Smells_Like_VCS = 1; - foreach my $file (qw(lib/one.pm t/one.t)) { + foreach my $file (qw(lib/one.pm t/one.faket)) { ok(!eval { require $file; 1 }, "Failed to load ${file}"); like($@, qr{Indirect call of method}, "Failed due to indirect.pm, ok"); } ok(eval { require "other/one.pl"; 1 }, "Loaded other/one.pl ok"); + chdir("../.."); } ok(!eval q{use strictures 2; 1; }, "Can't use strictures 2 (this is version 1)"); + +{ + skip 'Extra tests disabled on perls <= 5.008003', 1 + if $] < 5.008004; + local $ENV{PERL_STRICTURES_EXTRA} = 1; + local $strictures::extra_load_states = undef; + local @INC = ("t/dep_constellations/broken", @INC); + local %INC = %INC; + delete $INC{$_} + for qw( indirect.pm multidimensional.pm bareword/filehandles.pm ); + + { + open my $fh, '>', \my $str; + local *STDERR = $fh; + strictures->import; + like( + $str, + qr/Missing were:\n\n indirect multidimensional bareword::filehandles/, + "failure to load all three extra deps is reported" + ); + } + + { + open my $fh, '>', \my $str; + local *STDERR = $fh; + strictures->import; + ok( !$str, "extra dep load failure is not reported a second time" ); + } +}