Sha256: 65694f8d2d081c1b9938700027b727ecc35a1c82f9ed3df168b4374d15793e13

Contents?: true

Size: 225 Bytes

Versions: 4

Compression:

Stored size: 225 Bytes

Contents

module MixinStuff
  def mixin_stuff
    "from mixin"
  end
end

class SuperStuff
  def superclass_stuff
    "from superclass"
  end
end

class SubStuff
  include MixinStuff

  def subclass_stuff
    "from subclass"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
test-belt-2.0.1 test/fixtures/inherited_stuff.rb
test-belt-2.0.0 test/fixtures/inherited_stuff.rb
test-belt-1.1.2 test/fixtures/inherited_stuff.rb
test-belt-1.1.1 test/fixtures/inherited_stuff.rb