Class: RunnerGuard

Inherits:
SpecGuard show all
Defined in:
lib/mspec/guards/runner.rb

Instance Method Summary collapse

Methods inherited from SpecGuard

#===, #after, #before, finish, #implementation?, #initialize, #os?, #platform?, register, ruby_version, #standard?, unregister, #unregister, #windows?, windows?, #wordsize?, #yield?

Constructor Details

This class inherits a constructor from SpecGuard

Instance Method Details

#match?Boolean

Returns:

  • (Boolean)


4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/mspec/guards/runner.rb', line 4

def match?
  @args.any? do |runner|
    case runner
    when :mspec
      ENV['MSPEC_RUNNER'] == '1'
    when :rspec
      ENV['RSPEC_RUNNER'] == '1' or Object.const_defined?(:Spec)
    else
      false
    end
  end
end