Fix failing specs

This commit is contained in:
Luke "Jared" Bennett 2017-04-30 12:02:17 +01:00
parent 759f102df0
commit dc3d778fac
No known key found for this signature in database
GPG Key ID: 402ED51FB5D306C2
3 changed files with 8 additions and 8 deletions

View File

@ -75,7 +75,7 @@ describe 'Cherry-pick Commits' do
wait_for_ajax
page.within('#modal-cherry-pick-commit .dropdown-menu .dropdown-content') do
click_link 'feature'
click_link "'test'"
end
page.within('#modal-cherry-pick-commit') do

View File

@ -200,7 +200,7 @@ feature 'Environment', :feature do
end
scenario 'user deletes the branch with running environment' do
visit namespace_project_branches_path(project.namespace, project)
visit namespace_project_branches_path(project.namespace, project, page: 2)
remove_branch_with_hooks(project, user, 'feature') do
page.within('.js-branch-feature') { find('a.btn-remove').click }

View File

@ -25,7 +25,7 @@ feature 'Merge Request button', feature: true do
it 'shows Create merge request button' do
href = new_namespace_project_merge_request_path(project.namespace,
project,
merge_request: { source_branch: 'feature',
merge_request: { source_branch: "'test'",
target_branch: 'master' })
visit url
@ -69,7 +69,7 @@ feature 'Merge Request button', feature: true do
it 'shows Create merge request button' do
href = new_namespace_project_merge_request_path(forked_project.namespace,
forked_project,
merge_request: { source_branch: 'feature',
merge_request: { source_branch: "'test'",
target_branch: 'master' })
visit fork_url
@ -93,16 +93,16 @@ feature 'Merge Request button', feature: true do
context 'on compare page' do
it_behaves_like 'Merge request button only shown when allowed' do
let(:label) { 'Create merge request' }
let(:url) { namespace_project_compare_path(project.namespace, project, from: 'master', to: 'feature') }
let(:fork_url) { namespace_project_compare_path(forked_project.namespace, forked_project, from: 'master', to: 'feature') }
let(:url) { namespace_project_compare_path(project.namespace, project, from: 'master', to: "'test'") }
let(:fork_url) { namespace_project_compare_path(forked_project.namespace, forked_project, from: 'master', to: "'test'") }
end
end
context 'on commits page' do
it_behaves_like 'Merge request button only shown when allowed' do
let(:label) { 'Create merge request' }
let(:url) { namespace_project_commits_path(project.namespace, project, 'feature') }
let(:fork_url) { namespace_project_commits_path(forked_project.namespace, forked_project, 'feature') }
let(:url) { namespace_project_commits_path(project.namespace, project, "'test'") }
let(:fork_url) { namespace_project_commits_path(forked_project.namespace, forked_project, "'test'") }
end
end
end