gitlab-org--gitlab-foss/spec/lib/system_check_spec.rb

41 lines
785 B
Ruby
Raw Normal View History

require 'spec_helper'
2017-05-25 23:46:54 +00:00
require 'rake_helper'
describe SystemCheck, lib: true do
subject { SystemCheck }
2017-05-25 23:46:54 +00:00
before do
silence_output
end
describe '.run' do
context 'custom matcher' do
class SimpleCheck < SystemCheck::BaseCheck
def check?
true
end
end
class OtherCheck < SystemCheck::BaseCheck
def check?
false
end
end
subject { SystemCheck }
it 'detects execution of SimpleCheck' do
is_expected.to execute_check(SimpleCheck)
SystemCheck.run('Test', [SimpleCheck])
end
it 'detects exclusion of OtherCheck in execution' do
is_expected.not_to execute_check(OtherCheck)
SystemCheck.run('Test', [SimpleCheck])
end
end
end
end