mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
8 lines
233 B
Ruby
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
|