debian-mirror-gitlab/spec/frontend/fixtures/pipeline_schedules.rb

46 lines
1.4 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
describe Projects::PipelineSchedulesController, '(JavaScript fixtures)', type: :controller do
include JavaScriptFixturesHelpers
let(:admin) { create(:admin) }
let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
let(:project) { create(:project, :public, :repository) }
let!(:pipeline_schedule) { create(:ci_pipeline_schedule, project: project, owner: admin) }
let!(:pipeline_schedule_populated) { create(:ci_pipeline_schedule, project: project, owner: admin) }
let!(:pipeline_schedule_variable1) { create(:ci_pipeline_schedule_variable, key: 'foo', value: 'foovalue', pipeline_schedule: pipeline_schedule_populated) }
let!(:pipeline_schedule_variable2) { create(:ci_pipeline_schedule_variable, key: 'bar', value: 'barvalue', pipeline_schedule: pipeline_schedule_populated) }
render_views
before(:all) do
clean_frontend_fixtures('pipeline_schedules/')
end
before do
sign_in(admin)
end
2019-09-04 21:01:54 +05:30
it 'pipeline_schedules/edit.html' do
2019-02-15 15:39:39 +05:30
get :edit, params: {
2018-03-17 18:26:18 +05:30
namespace_id: project.namespace.to_param,
project_id: project,
id: pipeline_schedule.id
2019-02-15 15:39:39 +05:30
}
2018-03-17 18:26:18 +05:30
2019-10-12 21:52:04 +05:30
expect(response).to be_successful
2018-03-17 18:26:18 +05:30
end
2019-09-04 21:01:54 +05:30
it 'pipeline_schedules/edit_with_variables.html' do
2019-02-15 15:39:39 +05:30
get :edit, params: {
2018-03-17 18:26:18 +05:30
namespace_id: project.namespace.to_param,
project_id: project,
id: pipeline_schedule_populated.id
2019-02-15 15:39:39 +05:30
}
2018-03-17 18:26:18 +05:30
2019-10-12 21:52:04 +05:30
expect(response).to be_successful
2018-03-17 18:26:18 +05:30
end
end