class Fabrique::Test::Fixtures::Constructors::ClassWithPositionalArgumentConstructor
Public Class Methods
new(size, color, shape)
click to toggle source
# File lib/fabrique/test/fixtures/constructors.rb, line 50 def initialize(size, color, shape) @size, @color, @shape = size, color, shape end