DEBSOURCES
Skip Quicknav
sources / ruby-haml / 7.2.0-2 / test / haml / mocks / article.rb
12345678
# frozen_string_literal: true class Article attr_accessor :id, :title, :body def initialize @id, @title, @body = 1, 'Hello', 'World' end end