2012-08-03 18:49:54 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "Issues" do
|
|
|
|
let(:project) { Factory :project }
|
|
|
|
|
|
|
|
before do
|
|
|
|
login_as :user
|
|
|
|
project.add_access(@user, :read, :write)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /issues" do
|
|
|
|
before do
|
|
|
|
@issue = Factory :issue,
|
2012-08-11 00:07:50 +02:00
|
|
|
author: @user,
|
|
|
|
assignee: @user,
|
|
|
|
project: project
|
2012-08-03 18:49:54 +02:00
|
|
|
|
|
|
|
visit project_issues_path(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should render atom feed" do
|
|
|
|
visit project_issues_path(project, :atom)
|
|
|
|
|
|
|
|
page.response_headers['Content-Type'].should have_content("application/atom+xml")
|
2012-08-11 00:07:50 +02:00
|
|
|
page.body.should have_selector("title", text: "#{project.name} issues")
|
|
|
|
page.body.should have_selector("author email", text: @issue.author_email)
|
|
|
|
page.body.should have_selector("entry summary", text: @issue.title)
|
2012-08-03 18:49:54 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should render atom feed via private token" do
|
|
|
|
logout
|
2012-08-11 00:07:50 +02:00
|
|
|
visit project_issues_path(project, :atom, private_token: @user.private_token)
|
2012-08-03 18:49:54 +02:00
|
|
|
|
|
|
|
page.response_headers['Content-Type'].should have_content("application/atom+xml")
|
2012-08-11 00:07:50 +02:00
|
|
|
page.body.should have_selector("title", text: "#{project.name} issues")
|
|
|
|
page.body.should have_selector("author email", text: @issue.author_email)
|
|
|
|
page.body.should have_selector("entry summary", text: @issue.title)
|
2012-08-03 18:49:54 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|