Sha256: d76c00bd26cc3ee85441f698805d419c11a1570113efbacdc3c745b75435f6fd
Contents?: true
Size: 1.37 KB
Versions: 36
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)" end
Version data entries
36 entries across 29 versions & 10 rubygems