summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/projects_spec.rb
blob: c4e58d14f75beb11f1af3c3e0cf2cf2ef677b558 (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
30
31
32
require 'spec_helper'

RSpec.describe 'Dashboard Projects', feature: true do
  let(:user) { create(:user) }
  let(:project) { create(:project, name: "awesome stuff") }

  before do
    project.team << [user, :developer]
    login_as user
    visit dashboard_projects_path
  end

  it 'shows the project the user in a member of in the list' do
    visit dashboard_projects_path
    expect(page).to have_content('awesome stuff')
  end

  describe "with a pipeline" do
    let(:pipeline) {  create(:ci_pipeline, :success, project: project, sha: project.commit.sha) }

    before do
      pipeline
    end

    it 'shows that the last pipeline passed' do
      visit dashboard_projects_path
      expect(page).to have_xpath("//a[@href='#{pipelines_namespace_project_commit_path(project.namespace, project, project.commit)}']")
    end
  end

  it_behaves_like "an autodiscoverable RSS feed with current_user's private token"
end