Class: ConflictsGuard

Inherits:
SpecGuard show all
Defined in:
lib/mspec/guards/conflict.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
# File 'lib/mspec/guards/conflict.rb', line 4

def match?
  constants = Object.constants
  @args.any? { |mod| constants.include? mod.to_s }
end