diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-05-28 03:56:11 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-05-28 03:56:11 +0100 |
commit | 454a01584b3b9d58b332813f835eae735894f6a1 (patch) | |
tree | d70ffdb9454565ba70a17b37a75eb7638f810440 /t/app | |
parent | 0116626ded08c9bbac5b781fd5ee6147806e0dba (diff) |
Last bit from master, some LBO handling (note, if other London things come along, this needs work). Also fix completely broken council assignment, categories, and some spacing.
Diffstat (limited to 't/app')
-rw-r--r-- | t/app/controller/report_import.t | 4 | ||||
-rw-r--r-- | t/app/controller/report_new.t | 13 |
2 files changed, 17 insertions, 0 deletions
diff --git a/t/app/controller/report_import.t b/t/app/controller/report_import.t index 5bd0b21b8..4f225fc5a 100644 --- a/t/app/controller/report_import.t +++ b/t/app/controller/report_import.t @@ -125,6 +125,7 @@ subtest "Submit a correct entry" => sub { photo => '', phone => '', may_show_name => '1', + category => '-- Pick a category --', }, "check imported fields are shown"; @@ -141,6 +142,7 @@ subtest "Submit a correct entry" => sub { detail => 'This is a test report', phone => '01234 567 890', may_show_name => '1', + category => 'Street lighting', } }, "Update details and save" @@ -208,6 +210,7 @@ subtest "Submit a correct entry (with location)" => sub { photo => '', phone => '', may_show_name => '1', + category => '-- Pick a category --', }, "check imported fields are shown"; @@ -224,6 +227,7 @@ subtest "Submit a correct entry (with location)" => sub { detail => 'This is a test report ll', phone => '01234 567 890', may_show_name => '1', + category => 'Street lighting', } }, "Update details and save" diff --git a/t/app/controller/report_new.t b/t/app/controller/report_new.t index 16e8e6445..160d1a156 100644 --- a/t/app/controller/report_new.t +++ b/t/app/controller/report_new.t @@ -34,6 +34,7 @@ foreach my $test ( may_show_name => '1', email => '', phone => '', + category => 'Street lighting', }, changes => {}, errors => [ @@ -54,6 +55,7 @@ foreach my $test ( may_show_name => undef, email => '', phone => '', + category => 'Street lighting', }, changes => { may_show_name => '1' }, errors => [ @@ -74,6 +76,7 @@ foreach my $test ( may_show_name => undef, email => '', phone => '', + category => 'Street lighting', }, changes => {}, errors => [ @@ -93,6 +96,7 @@ foreach my $test ( may_show_name => '1', email => '', phone => '', + category => 'Street lighting', }, changes => {}, errors => [ @@ -112,6 +116,7 @@ foreach my $test ( may_show_name => '1', email => '', phone => '', + category => 'Street lighting', }, changes => { title => 'Dog poo on walls', @@ -131,6 +136,7 @@ foreach my $test ( may_show_name => '1', email => '', phone => '', + category => 'Street lighting', }, changes => {}, errors => [ @@ -149,6 +155,7 @@ foreach my $test ( may_show_name => '1', email => '', phone => '', + category => 'Street lighting', }, changes => {}, errors => [ @@ -167,6 +174,7 @@ foreach my $test ( may_show_name => '1', email => 'not an email', phone => '', + category => 'Street lighting', }, changes => { email => 'notanemail', }, errors => [ 'Please enter a valid email', ], @@ -182,6 +190,7 @@ foreach my $test ( may_show_name => '1', email => '', phone => '', + category => 'Street lighting', }, changes => { title => 'Test title', @@ -200,6 +209,7 @@ foreach my $test ( may_show_name => '1', email => ' BOB @ExAmplE.COM ', phone => '', + category => 'Street lighting', }, changes => { name => 'Bob Jones', @@ -266,6 +276,7 @@ subtest "test report creation for a user who does not have an account" => sub { may_show_name => '1', email => 'test-1@example.com', phone => '07903 123 456', + category => 'Street lighting', } }, "submit good details" @@ -358,6 +369,7 @@ subtest "test report creation for a user who is logged in" => sub { name => 'Test User', phone => '01234 567 890', photo => '', + category => '-- Pick a category --', }, "user's details prefilled" ); @@ -375,6 +387,7 @@ subtest "test report creation for a user who is logged in" => sub { name => 'Joe Bloggs', may_show_name => '1', phone => '07903 123 456', + category => 'Street lighting', } }, "submit good details" |