/vendor/bundle/ruby/1.9.1/gems/tilt-1.3.3/test/tilt_sasstemplate_test.rb
https://bitbucket.org/sqctest02/sample_app_3_1 · Ruby · 41 lines · 33 code · 8 blank · 0 comment · 2 complexity · cacee194a8ec32c13db3ed4d2214ba7f MD5 · raw file
- 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