diff options
author | Struan Donald <struan@exo.org.uk> | 2012-10-02 13:01:28 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-10-02 13:01:28 +0100 |
commit | 87cc39d560c5ec3d6ec6b44429b966210252fb19 (patch) | |
tree | 6600a284bdaa02e098b55eccdd685aff897eed32 /t/app/model | |
parent | ba53a2c2d8189ecaeca2c0e774c6dda54579dec9 (diff) |
do not used planned status but use new action scheduled instead
NB: planned still listed in some places to account for old reports
some test coverage improvements
Diffstat (limited to 't/app/model')
-rw-r--r-- | t/app/model/problem.t | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/t/app/model/problem.t b/t/app/model/problem.t index 8aabce4f7..c3913b79e 100644 --- a/t/app/model/problem.t +++ b/t/app/model/problem.t @@ -302,6 +302,13 @@ for my $test ( is_closed => 0, }, { + state => 'action scheduled', + is_visible => 1, + is_fixed => 0, + is_open => 1, + is_closed => 0, + }, + { state => 'in progress', is_visible => 1, is_fixed => 0, @@ -309,6 +316,27 @@ for my $test ( is_closed => 0, }, { + state => 'duplicate', + is_visible => 1, + is_fixed => 0, + is_open => 0, + is_closed => 1, + }, + { + state => 'not responsible', + is_visible => 1, + is_fixed => 0, + is_open => 0, + is_closed => 1, + }, + { + state => 'unable to fix', + is_visible => 1, + is_fixed => 0, + is_open => 0, + is_closed => 1, + }, + { state => 'fixed', is_visible => 1, is_fixed => 1, |