Sha256: 1b052de67827b44378ffb93bb93852ea5f4ec588a1c7f3a2043fc3909d23d4b6

Contents?: true

Size: 444 Bytes

Versions: 2

Compression:

Stored size: 444 Bytes

Contents

module MixinStuff
  def test_mixin_stuff
    "from mixin"
  end

  def mixednottestmeth
    "mixed in not test meth"
  end
end

class SuperStuff
  def superclass_stuff
    "from superclass"
  end

  def other_stuff
    "super not test meth"
  end

end

class SubStuff
  include MixinStuff

  def test_subclass_stuff
    "from subclass"
  end

  def nottestmeth
    "not test meth"
  end

  def more_other_stuff
    "more other stuff"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
assert-0.2.0 test/fixtures/inherited_stuff.rb
assert-0.1.0 test/fixtures/inherited_stuff.rb