Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dashboard_issues_spec.rb « atom « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 187f2ffcffd5ede16143d2eb013c3db3644fc985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'spec_helper'

describe "Dashboard Issues Feed", feature: true  do
  describe "GET /issues" do
    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) }

    before do
      project1.team << [user, :master]
      project2.team << [user, :master]
    end

    describe "atom feed" do
      it "should render atom feed via private token" do
        visit issues_dashboard_path(:atom, private_token: user.private_token)

        response_headers['Content-Type'].should have_content("application/atom+xml")
        body.should have_selector("title", text: "#{user.name} issues")
        body.should have_selector("author email", text: issue1.author_email)
        body.should have_selector("entry summary", text: issue1.title)
        body.should have_selector("author email", text: issue2.author_email)
        body.should have_selector("entry summary", text: issue2.title)
      end
    end
  end
end