Commit 6b75868c authored by Shinya Maeda's avatar Shinya Maeda

Reproduced

parent e5226177
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
= pipeline_schedule.description = pipeline_schedule.description
%td.branch-name-cell %td.branch-name-cell
= icon('code-fork') = icon('code-fork')
- if pipeline_schedule.ref.present?
= link_to pipeline_schedule.ref, project_ref_path(@project, pipeline_schedule.ref), class: "ref-name" = link_to pipeline_schedule.ref, project_ref_path(@project, pipeline_schedule.ref), class: "ref-name"
%td %td
- if pipeline_schedule.last_pipeline - if pipeline_schedule.last_pipeline
......
...@@ -65,6 +65,17 @@ feature 'Pipeline Schedules', :feature do ...@@ -65,6 +65,17 @@ feature 'Pipeline Schedules', :feature do
expect(page).not_to have_content('pipeline schedule') expect(page).not_to have_content('pipeline schedule')
end end
end end
context 'when ref is NULL' do
before do
pipeline_schedule.update_attribute(:ref, nil)
visit_pipelines_schedules
end
it 'shows a list of the pipeline schedules with empty ref column' do
expect(first('.branch-name-cell').text).to eq('')
end
end
end end
describe 'POST /projects/pipeline_schedules/new', js: true do describe 'POST /projects/pipeline_schedules/new', js: true do
...@@ -108,6 +119,19 @@ feature 'Pipeline Schedules', :feature do ...@@ -108,6 +119,19 @@ feature 'Pipeline Schedules', :feature do
expect(page).to have_content('my brand new description') expect(page).to have_content('my brand new description')
end end
context 'when ref is NULL' do
before do
pipeline_schedule.update_attribute(:ref, nil)
edit_pipeline_schedule
end
it 'shows the pipeline schedule with default ref' do
page.within('.git-revision-dropdown-toggle') do
expect(first('.dropdown-toggle-text').text).to eq('master')
end
end
end
end end
def visit_new_pipeline_schedule def visit_new_pipeline_schedule
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment