Sha256: c6e0a08689385e728fa900032e42e020f31b3b662d9df1008bc05c9fc496d65d

Contents?: true

Size: 454 Bytes

Versions: 2

Compression:

Stored size: 454 Bytes

Contents

# =========================================================================
#   Ceedling - Test-Centered Build System for C
#   ThrowTheSwitch.org
#   Copyright (c) 2010-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
#   SPDX-License-Identifier: MIT
# =========================================================================


class Kitten
  attr_accessor :a,:b

  def initialize(a, b)
    @a = a
    @b = b
  end

  def meow
    "meow"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-1.0.1 vendor/diy/test/files/factory/kitten.rb
ceedling-1.0.0 vendor/diy/test/files/factory/kitten.rb