summaryrefslogtreecommitdiff
path: root/spec/models/project_services/issue_tracker_data_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/project_services/issue_tracker_data_spec.rb')
-rw-r--r--spec/models/project_services/issue_tracker_data_spec.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/spec/models/project_services/issue_tracker_data_spec.rb b/spec/models/project_services/issue_tracker_data_spec.rb
index aaab654f874..db617cf0abb 100644
--- a/spec/models/project_services/issue_tracker_data_spec.rb
+++ b/spec/models/project_services/issue_tracker_data_spec.rb
@@ -8,28 +8,4 @@ describe IssueTrackerData do
describe 'Associations' do
it { is_expected.to belong_to :service }
end
-
- describe 'Validations' do
- subject { described_class.new(service: service) }
-
- context 'url validations' do
- context 'when service is inactive' do
- it { is_expected.not_to validate_presence_of(:project_url) }
- it { is_expected.not_to validate_presence_of(:issues_url) }
- end
-
- context 'when service is active' do
- before do
- service.update(active: true)
- end
-
- it_behaves_like 'issue tracker service URL attribute', :project_url
- it_behaves_like 'issue tracker service URL attribute', :issues_url
- it_behaves_like 'issue tracker service URL attribute', :new_issue_url
-
- it { is_expected.to validate_presence_of(:project_url) }
- it { is_expected.to validate_presence_of(:issues_url) }
- end
- end
- end
end