module Capybara::Wheel::FeatureOverride
Public Instance Methods
feature(*args, &block)
click to toggle source
# File lib/capybara/wheel.rb, line 20 def feature(*args, &block) options = { type: :wheel_feature, caller: caller } options.merge!(args.pop) if args.last.is_a?(Hash) describe(*args, options, &block) end