diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2013-09-05 09:53:45 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-09-05 13:34:53 +0100 |
commit | dd68a744200040d0dd2c9f1a58c5bd9826b4ce80 (patch) | |
tree | 4064688248b59a49ba65aa34b3f3b98f059e63b4 /t/app/controller | |
parent | b1ee798788efd57755d6325b6b97259248ff258f (diff) |
Disable info level logging in some tests
Diffstat (limited to 't/app/controller')
-rw-r--r-- | t/app/controller/report_import.t | 5 | ||||
-rw-r--r-- | t/app/controller/report_new.t | 5 | ||||
-rw-r--r-- | t/app/controller/report_new_open311.t | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/t/app/controller/report_import.t b/t/app/controller/report_import.t index eb686b44e..e25764c4b 100644 --- a/t/app/controller/report_import.t +++ b/t/app/controller/report_import.t @@ -3,6 +3,7 @@ use warnings; use Test::More; use FixMyStreet::TestMech; +use FixMyStreet::App; use Web::Scraper; use Path::Class; @@ -12,6 +13,10 @@ $mech->get_ok('/import'); my $sample_file = file(__FILE__)->parent->file("sample.jpg")->stringify; ok -e $sample_file, "sample file $sample_file exists"; +# disable info logs for this test run +FixMyStreet::App->log->disable('info'); +END { FixMyStreet::App->log->enable('info'); } + # submit an empty report to import - check we get all errors subtest "Test creating bad partial entries" => sub { diff --git a/t/app/controller/report_new.t b/t/app/controller/report_new.t index 8e129a41c..d1f246e95 100644 --- a/t/app/controller/report_new.t +++ b/t/app/controller/report_new.t @@ -5,9 +5,14 @@ use Test::More; use utf8; use FixMyStreet::TestMech; +use FixMyStreet::App; use Web::Scraper; use Path::Class; +# disable info logs for this test run +FixMyStreet::App->log->disable('info'); +END { FixMyStreet::App->log->enable('info'); } + my $mech = FixMyStreet::TestMech->new; $mech->get_ok('/report/new'); diff --git a/t/app/controller/report_new_open311.t b/t/app/controller/report_new_open311.t index 22d2d1f97..ed26d58d5 100644 --- a/t/app/controller/report_new_open311.t +++ b/t/app/controller/report_new_open311.t @@ -3,8 +3,13 @@ use warnings; use Test::More; use FixMyStreet::TestMech; +use FixMyStreet::App; use Web::Scraper; +# disable info logs for this test run +FixMyStreet::App->log->disable('info'); +END { FixMyStreet::App->log->enable('info'); } + my $mech = FixMyStreet::TestMech->new; my $body = $mech->create_body_ok(2651, 'City of Edinburgh Council'); |