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

31 lines
889 B
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-09-04 01:27:46 +05:30
RSpec.describe Integrations::OpenProject do
2020-04-22 19:07:51 +05:30
describe 'Validations' do
2021-09-30 23:02:18 +05:30
context 'when integration is active' do
2020-04-22 19:07:51 +05:30
before do
subject.active = true
end
it { is_expected.to validate_presence_of(:url) }
it { is_expected.to validate_presence_of(:token) }
it { is_expected.to validate_presence_of(:project_identifier_code) }
2021-09-30 23:02:18 +05:30
it_behaves_like 'issue tracker integration URL attribute', :url
it_behaves_like 'issue tracker integration URL attribute', :api_url
2020-04-22 19:07:51 +05:30
end
2021-09-30 23:02:18 +05:30
context 'when integration is inactive' do
2020-04-22 19:07:51 +05:30
before do
subject.active = false
end
it { is_expected.not_to validate_presence_of(:url) }
it { is_expected.not_to validate_presence_of(:token) }
it { is_expected.not_to validate_presence_of(:project_identifier_code) }
end
end
end