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/project_services/jira_tracker_data_spec.rb')
-rw-r--r--spec/models/project_services/jira_tracker_data_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/models/project_services/jira_tracker_data_spec.rb b/spec/models/project_services/jira_tracker_data_spec.rb
deleted file mode 100644
index 72bdbe40a74..00000000000
--- a/spec/models/project_services/jira_tracker_data_spec.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe JiraTrackerData do
- describe 'associations' do
- it { is_expected.to belong_to(:integration) }
- end
-
- describe 'deployment_type' do
- it { is_expected.to define_enum_for(:deployment_type).with_values([:unknown, :server, :cloud]).with_prefix(:deployment) }
- end
-
- describe 'encrypted attributes' do
- subject { described_class.encrypted_attributes.keys }
-
- it { is_expected.to contain_exactly(:api_url, :password, :url, :username) }
- end
-end