module Subroutine::Factory::SpecHelper

Public Instance Methods

factory(*args) click to toggle source
# File lib/subroutine/factory/spec_helper.rb, line 5
def factory(*args)
  ::Subroutine::Factory.create(*args)
end
factory!(*args) click to toggle source
# File lib/subroutine/factory/spec_helper.rb, line 9
def factory!(*args)
  factory(*args)
end
factory_inputs(*args) click to toggle source
# File lib/subroutine/factory/spec_helper.rb, line 13
def factory_inputs(*args)
  ::Subroutine::Factory.inputs(*args)
end