summaryrefslogtreecommitdiff
path: root/spec/mspec/lib/mspec/guards/conflict.rb
blob: 7a27671c1ea1ab08609dd2280f2893575e1d2b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'mspec/guards/guard'

class ConflictsGuard < SpecGuard
  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
end

# In some cases, libraries will modify another Ruby method's
# behavior. The specs for the method's behavior will then fail
# if that library is loaded. This guard will not run if any of
# the specified constants exist in Object.constants.
def conflicts_with(*modules, &block)
  ConflictsGuard.new(*modules).run_unless(:conflicts_with, &block)
end