Commit 0783e4cf983d3ac1737a7f8820398e4bdf5f2953

Authored by Ariejan de Vroom
1 parent f512418b

Check that issues from different projects get into the atom feed

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
spec/requests/user_issues_spec.rb
@@ -48,6 +48,8 @@ describe "User Issues Dashboard" do @@ -48,6 +48,8 @@ describe "User Issues Dashboard" do
48 page.body.should have_selector("title", :text => "#{@user.name} issues") 48 page.body.should have_selector("title", :text => "#{@user.name} issues")
49 page.body.should have_selector("author email", :text => @issue1.author_email) 49 page.body.should have_selector("author email", :text => @issue1.author_email)
50 page.body.should have_selector("entry summary", :text => @issue1.title) 50 page.body.should have_selector("entry summary", :text => @issue1.title)
  51 + page.body.should have_selector("author email", :text => @issue2.author_email)
  52 + page.body.should have_selector("entry summary", :text => @issue2.title)
51 end 53 end
52 end 54 end
53 end 55 end