Commit 0783e4cf authored by Ariejan de Vroom's avatar Ariejan de Vroom

Check that issues from different projects get into the atom feed

parent f512418b
...@@ -48,6 +48,8 @@ describe "User Issues Dashboard" do ...@@ -48,6 +48,8 @@ describe "User Issues Dashboard" do
page.body.should have_selector("title", :text => "#{@user.name} issues") page.body.should have_selector("title", :text => "#{@user.name} issues")
page.body.should have_selector("author email", :text => @issue1.author_email) page.body.should have_selector("author email", :text => @issue1.author_email)
page.body.should have_selector("entry summary", :text => @issue1.title) page.body.should have_selector("entry summary", :text => @issue1.title)
page.body.should have_selector("author email", :text => @issue2.author_email)
page.body.should have_selector("entry summary", :text => @issue2.title)
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment