Module: Axn::Testing::SpecHelpers

Defined in:
lib/axn/testing/spec_helpers.rb

Instance Method Summary collapse

Instance Method Details

#build_axn(&block) ⇒ Object



6
7
8
9
10
# File 'lib/axn/testing/spec_helpers.rb', line 6

def build_axn(&block)
  action = Class.new.send(:include, Axn)
  action.class_eval(&block) if block
  action
end