diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-12-17 07:53:47 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-12-17 07:53:47 +0000 |
commit | 7955472909243a80f395d90b93254b53b16de34d (patch) | |
tree | 1c5d634c3dc28fefd1b59da23d15d522fa5eabc1 /t/app/controller/my.t | |
parent | cbdfcad63e598447c318ce78738d477383f273d7 (diff) |
Fix bug showing reports on Your Reports.
92dfeac used an incorrect user column name in the new lookup,
and there was no test to catch the regression.
Diffstat (limited to 't/app/controller/my.t')
-rw-r--r-- | t/app/controller/my.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/app/controller/my.t b/t/app/controller/my.t index b723e537e..d24a66c8e 100644 --- a/t/app/controller/my.t +++ b/t/app/controller/my.t @@ -9,12 +9,17 @@ my $mech = FixMyStreet::TestMech->new; $mech->get_ok('/my'); is $mech->uri->path, '/auth', "got sent to the sign in page"; +$mech->create_problems_for_body(1, 1234, 'Test Title'); + # sign in my $user = $mech->log_in_ok( 'test@example.com' ); $mech->get_ok('/my'); is $mech->uri->path, '/my', "stayed on '/my/' page"; +# Report listed +$mech->content_contains('Test Title'); + # cleanup $mech->delete_user( $user ); - +$mech->delete_problems_for_body(1234); done_testing(); |