debian-mirror-gitlab/spec/features/reportable_note/commit_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
802 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Reportable note on commit', :js do
2017-09-10 17:25:29 +05:30
include RepoHelpers
let(:user) { create(:user) }
let(:project) { create(:project, :repository) }
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2017-09-10 17:25:29 +05:30
sign_in(user)
end
context 'a normal note' do
let!(:note) { create(:note_on_commit, commit_id: sample_commit.id, project: project) }
before do
visit project_commit_path(project, sample_commit.id)
end
2018-03-17 18:26:18 +05:30
it_behaves_like 'reportable note', 'commit'
2017-09-10 17:25:29 +05:30
end
context 'a diff note' do
let!(:note) { create(:diff_note_on_commit, commit_id: sample_commit.id, project: project) }
before do
visit project_commit_path(project, sample_commit.id)
end
2018-03-17 18:26:18 +05:30
it_behaves_like 'reportable note', 'commit'
2017-09-10 17:25:29 +05:30
end
end