Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/fixtures/builds.rb')
-rw-r--r--spec/javascripts/fixtures/builds.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/spec/javascripts/fixtures/builds.rb b/spec/javascripts/fixtures/builds.rb
deleted file mode 100644
index 320de791b08..00000000000
--- a/spec/javascripts/fixtures/builds.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-require 'spec_helper'
-
-describe Projects::BuildsController, '(JavaScript fixtures)', type: :controller do
- include JavaScriptFixturesHelpers
-
- let(:admin) { create(:admin) }
- let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
- let(:project) { create(:project_empty_repo, namespace: namespace, path: 'builds-project') }
- let(:pipeline) { create(:ci_empty_pipeline, project: project) }
- let!(:build_with_artifacts) { create(:ci_build, :success, :artifacts, :trace, pipeline: pipeline, stage: 'test', artifacts_expire_at: Time.now + 18.months) }
- let!(:failed_build) { create(:ci_build, :failed, pipeline: pipeline, stage: 'build') }
- let!(:pending_build) { create(:ci_build, :pending, pipeline: pipeline, stage: 'deploy') }
-
- render_views
-
- before(:all) do
- clean_frontend_fixtures('builds/')
- end
-
- before(:each) do
- sign_in(admin)
- end
-
- it 'builds/build-with-artifacts.html.raw' do |example|
- get :show,
- namespace_id: project.namespace.to_param,
- project_id: project,
- id: build_with_artifacts.to_param
-
- expect(response).to be_success
- store_frontend_fixture(response, example.description)
- end
-end