Sha256: b32994ee8cbcbf9f1fa56edada2c80259c9faaaf55601f832b8dd3b9a3961f5b
Contents?: true
Size: 1.26 KB
Versions: 27
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true module Capybara module RSpecMatcherProxies def all(*args, &block) if defined?(::RSpec::Matchers::BuiltIn::All) && args.first.respond_to?(:matches?) ::RSpec::Matchers::BuiltIn::All.new(*args) else find_all(*args, &block) end end def within(*args) if block_given? within_element(*args, &Proc.new) else be_within(*args) end end end module DSLRSpecProxyInstaller module ClassMethods def included(base) if defined?(::RSpec::Matchers) base.include(::Capybara::RSpecMatcherProxies) if base.include?(::RSpec::Matchers) end super end end def self.prepended(base) class <<base prepend ClassMethods end end end module RSpecMatcherProxyInstaller module ClassMethods def included(base) base.include(::Capybara::RSpecMatcherProxies) if base.include?(::Capybara::DSL) super end end def self.prepended(base) class <<base prepend ClassMethods end end end DSL.prepend ::Capybara::DSLRSpecProxyInstaller end if defined?(::RSpec::Matchers) module ::RSpec::Matchers prepend ::Capybara::RSpecMatcherProxyInstaller end end
Version data entries
27 entries across 27 versions & 2 rubygems