diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-10-09 13:33:19 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-10-09 13:33:19 +0100 |
commit | 74cb54ac08bd059551a59c8d554896e741c519dc (patch) | |
tree | 05cd1219447237b733142010cb3c1d1e746c8a33 /t/app/controller/reports.t | |
parent | 6d3db3167b8a1b27761dfb6e52e7dce9d2e1550e (diff) | |
parent | 32ed127efd57bbb5888a3e35637796852168b319 (diff) |
Merge branch 'issues/forcouncils/231-multi-ward-reports-view'
Diffstat (limited to 't/app/controller/reports.t')
-rw-r--r-- | t/app/controller/reports.t | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/app/controller/reports.t b/t/app/controller/reports.t index f3958a0a5..7773223dd 100644 --- a/t/app/controller/reports.t +++ b/t/app/controller/reports.t @@ -114,6 +114,18 @@ FixMyStreet::override_config { MAPIT_URL => 'http://mapit.uk/', }, sub { $mech->submit_form_ok( { with_fields => { body => $body_edin_id } }, 'Submitted dropdown okay' ); + is $mech->uri->path, '/reports/City+of+Edinburgh+Council'; + + subtest "test ward pages" => sub { + $mech->get_ok('/reports/Birmingham/Bad-Ward'); + is $mech->uri->path, '/reports/Birmingham+City+Council'; + $mech->get_ok('/reports/Birmingham/Aston'); + is $mech->uri->path, '/reports/Birmingham+City+Council/Aston'; + $mech->get_ok('/reports/Birmingham/Aston|Bournville'); + is $mech->uri->path, '/reports/Birmingham+City+Council/Aston%7CBournville'; + $mech->content_contains('Aston, Bournville'); + }; + $mech->get_ok('/reports/Westminster'); }; |