diff options
author | Mark Wells <mark@freeside.biz> | 2015-07-10 16:38:28 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-07-10 16:38:28 -0700 |
commit | 0ed195595b5c7ea404c8848d9d1881ada4214489 (patch) | |
tree | 6d6f3fe6e980cd123ff7a648d27fb9eb6b16ab13 /rt/t/web/compilation_errors.t | |
parent | af05c3dda381122e0a45f72dbc0b4e9492f13fe7 (diff) | |
parent | df4a68099abfa067014f36f92874fccefdea662e (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'rt/t/web/compilation_errors.t')
-rw-r--r-- | rt/t/web/compilation_errors.t | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/rt/t/web/compilation_errors.t b/rt/t/web/compilation_errors.t index 126d33691..e4845e0de 100644 --- a/rt/t/web/compilation_errors.t +++ b/rt/t/web/compilation_errors.t @@ -6,7 +6,7 @@ BEGIN { sub wanted { -f && /\.html$/ && $_ !~ /Logout.html$/ && $File::Find::dir !~ /RichText/; } - my $tests = 8; + my $tests = 7; find( sub { wanted() and $tests += 4 }, 'share/html/' ); plan tests => $tests + 1; # plus one for warnings check } @@ -36,12 +36,10 @@ is($agent->status, 200, "Fetched the page ok"); $agent->content_contains('Logout', "Found a logout link"); -find ( sub { wanted() and test_get($agent, $File::Find::name) } , 'share/html/'); +find ( { wanted => sub { wanted() and test_get($agent, $File::Find::name) }, no_chdir => 1 } , 'share/html/'); -TODO: { - local $TODO = "we spew *lots* of undef warnings"; - $agent->no_warnings_ok; -}; +# We expect to spew a lot of warnings; toss them away +$agent->get_warnings; sub test_get { my $agent = shift; |