Sha256: 4372ee0f79c67a28104a5b636e72f43c264a26e1233a176f515788792b213bf3
Contents?: true
Size: 1.22 KB
Versions: 14
Compression:
Stored size: 1.22 KB
Contents
############################################################################## # Features Plugin ############################################################################## # # This plugin enables the feature/scenario/background/given syntax in RSpec # without requiring Capybara as a dependency (and may also be used outside of # Rails). The contents of this file are taken verbatim from # # https://github.com/jnicklas/capybara/blob/cd4327857bd3bafa8614b7bffb2886a8ab401953/lib/capybara/rspec/features.rb # # and should be updated whenever that file is updated. # module Capybara module Features def self.included(base) base.instance_eval do alias_method :background, :before alias_method :scenario, :it alias_method :xscenario, :xit alias_method :given, :let alias_method :given!, :let! alias_method :feature, :describe end end end end def self.feature(*args, &block) options = args.last.is_a?(Hash) ? args.pop : {} options[:capybara_feature] = true options[:type] = :feature options[:caller] ||= caller args.push(options) describe(*args, &block) end RSpec.configuration.include Capybara::Features, capybara_feature: true
Version data entries
14 entries across 14 versions & 1 rubygems