blob: 0b30c79b10c277166f34ab93257c0ae313327645 (
plain) (
tree)
|
|
class Customer < Struct.new(:name, :id)
def to_param
id.to_s
end
end
class BadCustomer < Customer
end
class GoodCustomer < Customer
end
module Quiz
class Question < Struct.new(:name, :id)
def to_param
id.to_s
end
end
end
|