summaryrefslogtreecommitdiff
path: root/spec/lib/system_check_spec.rb
blob: 61985751b5cc49ea9828801494c01cf0aa2d9c0f (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
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