Sha256: 016a5a44360802eb0473c101fd24378a08d2b675af09c8cb17e1769ed5f66505
Contents?: true
Size: 1.37 KB
Versions: 130
Compression:
Stored size: 1.37 KB
Contents
require 'contest' require 'tilt' begin require 'sass' class SassTemplateTest < Test::Unit::TestCase test "is registered for '.sass' files" do assert_equal Tilt::SassTemplate, Tilt['test.sass'] end 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" end
Version data entries
130 entries across 113 versions & 18 rubygems