test/tilt_sasstemplate_test.rb in tilt-1.2.1 vs test/tilt_sasstemplate_test.rb in tilt-1.2.2
- old
+ new
@@ -12,19 +12,29 @@
test "compiles and evaluates the template on #render" do
template = Tilt::SassTemplate.new { |t| "#main\n :background-color #0000f1" }
assert_equal "#main {\n background-color: #0000f1; }\n", template.render
end
+
+ test "can be rendered more than once" do
+ template = Tilt::SassTemplate.new { |t| "#main\n :background-color #0000f1" }
+ 3.times { assert_equal "#main {\n background-color: #0000f1; }\n", template.render }
+ end
end
class ScssTemplateTest < Test::Unit::TestCase
test "is registered for '.scss' files" do
assert_equal Tilt::ScssTemplate, Tilt['test.scss']
end
test "compiles and evaluates the template on #render" do
template = Tilt::ScssTemplate.new { |t| "#main {\n background-color: #0000f1;\n}" }
assert_equal "#main {\n background-color: #0000f1; }\n", template.render
+ end
+
+ test "can be rendered more than once" do
+ template = Tilt::ScssTemplate.new { |t| "#main {\n background-color: #0000f1;\n}" }
+ 3.times { assert_equal "#main {\n background-color: #0000f1; }\n", template.render }
end
end
rescue LoadError => boom
warn "Tilt::SassTemplate (disabled)\n"