2018-08-10 12:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2018-07-21 04:05:57 -04:00
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Commit > User uses quick actions', :js do
|
2018-07-21 04:05:57 -04:00
|
|
|
include Spec::Support::Helpers::Features::NotesHelpers
|
|
|
|
include RepoHelpers
|
|
|
|
|
|
|
|
let(:project) { create(:project, :public, :repository) }
|
|
|
|
let(:user) { project.creator }
|
|
|
|
let(:commit) { project.commit }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
visit project_commit_path(project, commit.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Tagging a commit' do
|
|
|
|
let(:tag_name) { 'v1.2.3' }
|
|
|
|
let(:tag_message) { 'Stable release' }
|
|
|
|
let(:truncated_commit_sha) { Commit.truncate_sha(commit.sha) }
|
|
|
|
|
2019-04-03 05:28:07 -04:00
|
|
|
it_behaves_like 'tag quick action'
|
2018-07-21 04:05:57 -04:00
|
|
|
end
|
|
|
|
end
|