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/models/analytics/cycle_analytics/project_value_stream_spec.rb')
-rw-r--r--spec/models/analytics/cycle_analytics/project_value_stream_spec.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/spec/models/analytics/cycle_analytics/project_value_stream_spec.rb b/spec/models/analytics/cycle_analytics/project_value_stream_spec.rb
new file mode 100644
index 00000000000..d84ecedc634
--- /dev/null
+++ b/spec/models/analytics/cycle_analytics/project_value_stream_spec.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Analytics::CycleAnalytics::ProjectValueStream, type: :model do
+ describe 'associations' do
+ it { is_expected.to belong_to(:project) }
+ it { is_expected.to have_many(:stages) }
+ end
+
+ describe 'validations' do
+ it { is_expected.to validate_presence_of(:project) }
+ it { is_expected.to validate_presence_of(:name) }
+ it { is_expected.to validate_length_of(:name).is_at_most(100) }
+
+ it 'validates uniqueness of name' do
+ project = create(:project)
+ create(:cycle_analytics_project_value_stream, name: 'test', project: project)
+
+ value_stream = build(:cycle_analytics_project_value_stream, name: 'test', project: project)
+
+ expect(value_stream).to be_invalid
+ expect(value_stream.errors.messages).to eq(name: [I18n.t('errors.messages.taken')])
+ end
+ end
+
+ it 'is not custom' do
+ expect(described_class.new).not_to be_custom
+ end
+
+ describe '.build_default_value_stream' do
+ it 'builds the default value stream' do
+ project = build(:project)
+
+ value_stream = described_class.build_default_value_stream(project)
+ expect(value_stream.name).to eq('default')
+ end
+ end
+end