Class: ConflictsGuard

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

Instance Attribute Summary

Attributes inherited from SpecGuard

#name

Instance Method Summary collapse

Methods inherited from SpecGuard

#add, clear, clear_guards, finish, guards, #initialize, #record, report, #report_key, #reporting?, ruby_version, #run_if, #run_unless, #unregister, #yield?

Constructor Details

This class inherits a constructor from SpecGuard

Instance Method Details

#match?Boolean

Returns:

  • (Boolean)


4
5
6
7
8
# File 'lib/extensions/mspec/mspec/guards/conflict.rb', line 4

def match?
  # Always convert constants to symbols regardless of version.
  constants = Object.constants.map { |x| x.to_sym }
  @parameters.any? { |mod| constants.include? mod }
end