haml--haml/test/mocks/article.rb

6 lines
120 B
Ruby
Raw Normal View History

class Article
attr_accessor :id, :title, :body
def initialize
@id, @title, @body = 1, 'Hello', 'World'
end
end