diff options
-rw-r--r-- | t/app/controller/alert.t | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/t/app/controller/alert.t b/t/app/controller/alert.t index 32283134d..847aa1a17 100644 --- a/t/app/controller/alert.t +++ b/t/app/controller/alert.t @@ -2,11 +2,8 @@ use strict; use warnings; use Test::More; - -use Catalyst::Test 'FixMyStreet::App'; -use Test::WWW::Mechanize::Catalyst 'FixMyStreet::App'; - -ok( my $mech = Test::WWW::Mechanize::Catalyst->new, 'Created mech object' ); +use FixMyStreet::TestMech; +my $mech = FixMyStreet::TestMech->new; # check that we can get the page $mech->get_ok('/alert'); |