X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fstrictures.t;h=8312e718585a7659b9131352fd7537700a71810f;hb=23c0b85d1580eb07a49da0096e4913debc21e8fa;hp=e6da256d575c9bceba72275bf7f70a373fd97cb2;hpb=13ac7415390fd27a7a7dfeda6abf64c6c15c3126;p=p5sagit%2Fstrictures.git diff --git a/t/strictures.t b/t/strictures.t index e6da256..8312e71 100644 --- a/t/strictures.t +++ b/t/strictures.t @@ -1,46 +1,53 @@ -# -e is sufficient here. --e 't/smells-of-vcs/.git' - or mkdir('t/smells-of-vcs/.git') - or die "Couldn't create fake .git: $!"; +BEGIN { $ENV{PERL_STRICTURES_EXTRA} = 0 } use Test::More qw(no_plan); -our (@us, @expect); +our ($hints, $warning_bits); -sub capture_stuff { [ $^H, ${^WARNING_BITS} ] } - -sub capture_us { push @us, capture_stuff } -sub capture_expect { push @expect, capture_stuff } +sub capture_hints { + # ignore lexicalized hints + $hints = $^H & ~ 0x20000; + $warning_bits = defined ${^WARNING_BITS} ? (unpack "H*", ${^WARNING_BITS}) : undef; +} -{ - use strictures 1; - BEGIN { capture_us } +sub test_hints { + my $name = shift; + my $want_hints = $hints; + my $want_bits = $warning_bits; + capture_hints; + is($hints, $want_hints, "Hints ok for $name"); + is($warning_bits, $want_bits, "Warnings ok for $name"); } { use strict; use warnings FATAL => 'all'; - BEGIN { capture_expect } + BEGIN { capture_hints } } -# I'm assuming here we'll have more cases later. maybe not. eh. +{ + use strictures 1; + BEGIN { test_hints "version 1" } +} -foreach my $idx (0 .. $#us) { - is($us[$idx][0], $expect[$idx][0], 'Hints ok for case '.($idx+1)); - is($us[$idx][1], $expect[$idx][1], 'Warnings ok for case '.($idx+1)); +{ + use strict; + BEGIN { + warnings->import('all'); + warnings->import(FATAL => @strictures::WARNING_CATEGORIES); + warnings->import(NONFATAL => @strictures::V2_NONFATAL); + warnings->unimport(@strictures::V2_DISABLE); + } + BEGIN { capture_hints } } { - local $0 = 't/00load.t'; - sub Foo::new { 1 } - chdir("t/smells-of-vcs"); - my $r = eval q{ - use strictures 1; - new Foo 1, 2, 3; - }; - # I don't test $@ here since if indirect isn't installed we hit one - # error and if it is we hit another; it's enough the code path's hit. - ok(!$r, 'strictures blows up for t/00load.t'); + use strictures 2; + BEGIN { test_hints "version 2" } } -ok(!eval q{use strictures 2; 1; }, "Can't use strictures 2 (this is version 1)"); +my $v; +eval { $v = strictures->VERSION; 1 } or diag $@; +is $v, $strictures::VERSION, '->VERSION returns version correctly'; + +ok(!eval q{use strictures 3; 1; }, "Can't use strictures 3 (this is version 2)");