summaryrefslogtreecommitdiff
path: root/spec/javascripts/fixtures/pipelines.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/fixtures/pipelines.rb')
-rw-r--r--spec/javascripts/fixtures/pipelines.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/spec/javascripts/fixtures/pipelines.rb b/spec/javascripts/fixtures/pipelines.rb
deleted file mode 100644
index 6b6b0eefab9..00000000000
--- a/spec/javascripts/fixtures/pipelines.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-require 'spec_helper'
-
-describe Projects::PipelinesController, '(JavaScript fixtures)', type: :controller do
- include JavaScriptFixturesHelpers
-
- let(:admin) { create(:admin) }
- let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
- let(:project) { create(:project, :repository, namespace: namespace, path: 'pipelines-project') }
- let(:commit) { create(:commit, project: project) }
- let(:commit_without_author) { RepoHelpers.another_sample_commit }
- let!(:user) { create(:user, developer_projects: [project], email: commit.author_email) }
- let!(:pipeline) { create(:ci_pipeline, project: project, sha: commit.id, user: user) }
- let!(:pipeline_without_author) { create(:ci_pipeline, project: project, sha: commit_without_author.id) }
- let!(:pipeline_without_commit) { create(:ci_pipeline, project: project, sha: '0000') }
-
- render_views
-
- before(:all) do
- clean_frontend_fixtures('pipelines/')
- end
-
- before do
- sign_in(admin)
- end
-
- it 'pipelines/pipelines.json' do
- get :index, params: {
- namespace_id: namespace,
- project_id: project
- }, format: :json
-
- expect(response).to be_success
- end
-end