Sha256: 4c79d9aa2225a6c6f1a2435b4aef3d8d8657175916bcb83a3d74e989accff148
Contents?: true
Size: 1.4 KB
Versions: 40
Compression:
Stored size: 1.4 KB
Contents
require 'test_helper' require 'tilt' begin require 'tilt/sass' class SassTemplateTest < Minitest::Test 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 < Minitest::Test 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 => err raise err if ENV['FORCE_SASS'] warn "Tilt::SassTemplate (disabled)" end
Version data entries
40 entries across 40 versions & 4 rubygems