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/events/ci/pipeline_created_event_spec.rb')
-rw-r--r--spec/events/ci/pipeline_created_event_spec.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/events/ci/pipeline_created_event_spec.rb b/spec/events/ci/pipeline_created_event_spec.rb
deleted file mode 100644
index 191c2e450dc..00000000000
--- a/spec/events/ci/pipeline_created_event_spec.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Ci::PipelineCreatedEvent do
- using RSpec::Parameterized::TableSyntax
-
- where(:data, :valid) do
- { pipeline_id: 1 } | true
- { pipeline_id: nil } | false
- { pipeline_id: "test" } | false
- {} | false
- { job_id: 1 } | false
- end
-
- with_them do
- let(:event) { described_class.new(data: data) }
-
- it 'validates the data according to the schema' do
- if valid
- expect { event }.not_to raise_error
- else
- expect { event }.to raise_error(Gitlab::EventStore::InvalidEvent)
- end
- end
- end
-end