Module: Specify::Spec

Defined in:
lib/specify/spec.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/specify/spec.rb', line 3

def self.included(base)
  base.instance_eval do
    alias :Background :before
    alias :Setup      :before
    alias :Teardown   :after

    alias :Feature    :context
    alias :Ability    :context
    alias :Story      :context
    alias :Component  :context
    alias :Workflow   :context
  end
end