diff options
Diffstat (limited to 't')
-rw-r--r-- | t/cobrand/zurich.t | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/cobrand/zurich.t b/t/cobrand/zurich.t index f2dd754f1..0a144de23 100644 --- a/t/cobrand/zurich.t +++ b/t/cobrand/zurich.t @@ -118,6 +118,15 @@ my $json = $mech->get_ok_json( '/report/ajax/' . $report->id ); is $json->{report}->{title}, "Überprüfung ausstehend", "correct title"; is $json->{report}->{state}, "submitted", "correct state"; +$report->state('fixed - council'); +$report->set_extra_metadata(public_response => 'Freundliche Grüsse'); +$report->update; +$json = $mech->get_ok_json( '/report/ajax/' . $report->id ); +is $json->{report}->{state}, "closed", "correct state"; +is $json->{updates}->{details}, "Freundliche Grüsse", "correct public response"; + +$report->update({ state => 'submitted' }); + subtest "Banners are displayed correctly" => sub { for my $test ( { |