class Fabrique::Test::Fixtures::Constructors::FactoryWithCreateMethod

Public Class Methods

new(*args) click to toggle source
# File lib/fabrique/test/fixtures/constructors.rb, line 11
def initialize(*args)
end

Public Instance Methods

create() click to toggle source
# File lib/fabrique/test/fixtures/constructors.rb, line 14
def create
  ClassWithPositionalArgumentConstructor.new("factory size", "factory color", "factory shape")
end