debian-mirror-gitlab/spec/policies/concerns/archived_abilities_spec.rb

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

28 lines
692 B
Ruby
Raw Normal View History

2023-03-04 22:38:38 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ArchivedAbilities, feature_category: :projects do
let(:test_class) do
Class.new do
include ArchivedAbilities
end
end
before do
stub_const('TestClass', test_class)
end
describe '.archived_abilities' do
it 'returns an array of abilites to be prevented when archived' do
expect(TestClass.archived_abilities).to include(*described_class::ARCHIVED_ABILITIES)
end
end
describe '.archived_features' do
it 'returns an array of features to be prevented when archived' do
expect(TestClass.archived_features).to include(*described_class::ARCHIVED_FEATURES)
end
end
end