module Proverbs::Contexts

Public Class Methods

included(caller) click to toggle source
# File lib/proverbs/contexts.rb, line 3
def self.included(caller)
  caller.instance_eval do
    alias :Background :before
    alias :Setup      :before
    alias :Teardown   :after

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