class Fabrique::Test::Fixtures::Constructors::ClassWithKeywordArgumentConstructor

Public Class Methods

new(size: DEFAULT_SIZE, color: DEFAULT_COLOR, shape: DEFAULT_SHAPE) click to toggle source
# File lib/fabrique/test/fixtures/constructors.rb, line 58
def initialize(size: DEFAULT_SIZE, color: DEFAULT_COLOR, shape: DEFAULT_SHAPE)
  @size, @color, @shape = size, color, shape
end