1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/test/haml/tilt_test.rb
2021-07-27 21:49:21 -07:00

8 lines
233 B
Ruby

describe Tilt::HamlTemplate do
describe '#render' do
it 'works normally' do
template = Tilt::HamlTemplate.new { "%p= name" }
assert_equal "<p>tilt</p>\n", template.render(Object.new, name: 'tilt')
end
end
end