2011-12-08 21:17:53 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2012-09-12 14:01:50 +02:00
|
|
|
describe "Dashboard Issues Feed" do
|
2011-12-08 21:17:53 +01:00
|
|
|
describe "GET /issues" do
|
2012-11-06 04:31:55 +01:00
|
|
|
let!(:user) { create(:user) }
|
|
|
|
let!(:project1) { create(:project) }
|
|
|
|
let!(:project2) { create(:project) }
|
|
|
|
let!(:issue1) { create(:issue, author: user, assignee: user, project: project1) }
|
|
|
|
let!(:issue2) { create(:issue, author: user, assignee: user, project: project2) }
|
2011-12-08 21:17:53 +01:00
|
|
|
|
2012-09-12 14:01:50 +02:00
|
|
|
describe "atom feed" do
|
2011-12-08 21:17:53 +01:00
|
|
|
it "should render atom feed via private token" do
|
2013-01-27 12:20:23 +01:00
|
|
|
visit issues_dashboard_path(:atom, private_token: user.private_token)
|
2011-12-08 21:17:53 +01:00
|
|
|
|
|
|
|
page.response_headers['Content-Type'].should have_content("application/atom+xml")
|
2012-09-12 14:01:50 +02:00
|
|
|
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("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)
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|