module TestSpec::Spec

Public Class Methods

included(base) click to toggle source
# File lib/test_spec/spec.rb, line 3
def self.included(base)
  base.instance_eval do
    alias :Feature    :context
    alias :Ability    :context
    alias :Story      :context
    alias :Component  :context
    alias :Workflow   :context

    alias :Background :before
    alias :Setup      :before
    alias :Teardown   :after
  end
end