test/tilt_sasstemplate_test.rb in tilt-1.0.1 vs test/tilt_sasstemplate_test.rb in tilt-1.1

- old
+ new

@@ -14,8 +14,19 @@ template = Tilt::SassTemplate.new { |t| "#main\n :background-color #0000f1" } 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 + end + rescue LoadError => boom warn "Tilt::SassTemplate (disabled)\n" end