debian-mirror-gitlab/spec/lib/system_check_spec.rb
2020-05-24 23:13:21 +05:30

42 lines
792 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
require 'rake_helper'
describe SystemCheck do
before do
stub_const('SimpleCheck', Class.new(SystemCheck::BaseCheck))
stub_const('OtherCheck', Class.new(SystemCheck::BaseCheck))
SimpleCheck.class_eval do
def check?
true
end
end
OtherCheck.class_eval do
def check?
false
end
end
silence_output
end
describe '.run' do
subject { described_class }
it 'detects execution of SimpleCheck' do
is_expected.to execute_check(SimpleCheck)
subject.run('Test', [SimpleCheck])
end
it 'detects exclusion of OtherCheck in execution' do
is_expected.not_to execute_check(OtherCheck)
subject.run('Test', [SimpleCheck])
end
end
end