debian-mirror-gitlab/spec/models/integrations/bugzilla_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
982 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
require 'spec_helper'
2021-09-04 01:27:46 +05:30
RSpec.describe Integrations::Bugzilla do
2016-08-24 12:49:21 +05:30
describe 'Validations' do
2021-09-30 23:02:18 +05:30
context 'when integration is active' do
2017-09-10 17:25:29 +05:30
before do
subject.active = true
end
2016-08-24 12:49:21 +05:30
it { is_expected.to validate_presence_of(:project_url) }
it { is_expected.to validate_presence_of(:issues_url) }
it { is_expected.to validate_presence_of(:new_issue_url) }
2021-09-30 23:02:18 +05:30
it_behaves_like 'issue tracker integration URL attribute', :project_url
it_behaves_like 'issue tracker integration URL attribute', :issues_url
it_behaves_like 'issue tracker integration URL attribute', :new_issue_url
2016-08-24 12:49:21 +05:30
end
2021-09-30 23:02:18 +05:30
context 'when integration is inactive' do
2017-09-10 17:25:29 +05:30
before do
subject.active = false
end
2016-08-24 12:49:21 +05:30
it { is_expected.not_to validate_presence_of(:project_url) }
it { is_expected.not_to validate_presence_of(:issues_url) }
it { is_expected.not_to validate_presence_of(:new_issue_url) }
end
end
end