module Capybara::Wheel

Constants

VERSION

Public Class Methods

included(base) click to toggle source

main mixin to access wheel

# File lib/capybara/wheel.rb, line 10
def self.included(base)
  base.instance_eval do
    alias :background :before
    alias :scenario :it
    alias :given :let
    alias :given! :let!
  end
end