class DelegatesTest::Album

Public Instance Methods

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