module Capybara::DSLRSpecProxyInstaller::ClassMethods

Public Instance Methods

included(base) click to toggle source
Calls superclass method
# File lib/capybara/rspec/matcher_proxies.rb, line 24
def included(base)
  if defined?(::RSpec::Matchers)
    base.include(::Capybara::RSpecMatcherProxies) if base.include?(::RSpec::Matchers)
  end
  super
end