class DelegatesTest::Song

Public Instance Methods

model() click to toggle source
# File test/delegates_test.rb, line 10
def model
  Struct.new(:title).new("Helloween")
end
title() click to toggle source
Calls superclass method
# File test/delegates_test.rb, line 14
def title
  super.downcase
end