summaryrefslogtreecommitdiff
path: root/spec/lib/system_check_spec.rb
blob: f3ed6ca31c963fc0810c4e2b1442c44d5b28382a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'spec_helper'
require 'rake_helper'

describe SystemCheck do
  class SimpleCheck < SystemCheck::BaseCheck
    def check?
      true
    end
  end

  class OtherCheck < SystemCheck::BaseCheck
    def check?
      false
    end
  end

  before do
    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