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

show_spec.rb « snippets « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 981ed12d540868765b81c8f02e174646383e10ea (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
33
34
35
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Snippet', :js do
  let_it_be(:user) { create(:user) }
  let_it_be(:snippet) { create(:personal_snippet, :public, :repository, author: user) }

  before do
    stub_feature_flags(snippets_vue: false)
  end

  it_behaves_like 'show and render proper snippet blob' do
    let(:anchor) { nil }

    subject do
      visit snippet_path(snippet, anchor: anchor)

      wait_for_requests
    end
  end

  it_behaves_like 'showing user status' do
    let(:file_path) { 'files/ruby/popen.rb' }
    let(:user_with_status) { snippet.author }

    subject { visit snippet_path(snippet) }
  end

  it_behaves_like 'does not show New Snippet button' do
    let(:file_path) { 'files/ruby/popen.rb' }

    subject { visit snippet_path(snippet) }
  end
end