aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/controller/admin/stats.t
blob: dae51d31f5c1f30ff0e61b6b5db8f283ba539205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use FixMyStreet::TestMech;

my $mech = FixMyStreet::TestMech->new;
my $superuser = $mech->create_user_ok('superuser@example.com', name => 'Super User', is_superuser => 1);

subtest "smoke view some stats pages" => sub {
    $mech->log_in_ok( $superuser->email );
    $mech->get_ok('/admin/stats/fix-rate');
    $mech->get_ok('/admin/stats/questionnaire');
};

done_testing();