Skip to content

Commit

Permalink
account for new sass color minimization in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rtomayko committed May 28, 2010
1 parent 2b659ba commit 878331f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tilt_sasstemplate_test.rb
Expand Up @@ -11,8 +11,8 @@ class SassTemplateTest < Test::Unit::TestCase
end

test "compiles and evaluates the template on #render" do
template = Tilt::SassTemplate.new { |t| "#main\n :background-color #0000ff" }
assert_equal "#main {\n background-color: #0000ff; }\n", template.render
template = Tilt::SassTemplate.new { |t| "#main\n :background-color #0000f1" }
assert_equal "#main {\n background-color: #0000f1; }\n", template.render
end
end

Expand Down

0 comments on commit 878331f

Please sign in to comment.