aboutsummaryrefslogtreecommitdiffstats
path: root/t/open311
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2018-04-27 14:50:22 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2018-04-27 15:50:58 +0100
commit033fa395369324188beea2469d072ee0965c8d74 (patch)
tree86b16c9dbd3bf2c552a4dc77e9a46255f50fff04 /t/open311
parent86677908feec287449467b565f63fa2f8db7e560 (diff)
[Open311] Hide fetched update if no data to show.
If no text, photo, or state change, hide the update from display.
Diffstat (limited to 't/open311')
-rw-r--r--t/open311/getservicerequestupdates.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/open311/getservicerequestupdates.t b/t/open311/getservicerequestupdates.t
index dad3bb0d1..3c279d776 100644
--- a/t/open311/getservicerequestupdates.t
+++ b/t/open311/getservicerequestupdates.t
@@ -368,6 +368,7 @@ for my $test (
mark_open => 0,
problem_state => 'investigating',
end_state => 'investigating',
+ comment_state => 'hidden',
},
{
desc => 'open status does not re-open hidden report',
@@ -401,6 +402,7 @@ for my $test (
is $c->mark_fixed, $test->{mark_fixed}, 'mark_closed correct';
is $c->problem_state, $test->{problem_state}, 'problem_state correct';
is $c->mark_open, $test->{mark_open}, 'mark_open correct';
+ is $c->state, $test->{comment_state} || 'confirmed', 'comment state correct';
is $problem->state, $test->{end_state}, 'correct problem state';
$problem->comments->delete;
};