Does not allow caching.

This was done to prevent putting the .sass-cache folder in bad places. Needed? cc @benbalter.
This commit is contained in:
Parker Moore 2014-01-12 15:38:26 -08:00
parent 8ecd2d9218
commit ecf85a9cfa
1 changed files with 4 additions and 0 deletions

View File

@ -85,6 +85,10 @@ CSS
should "override user-set syntax based on content" do
assert_equal :sass, converter({"syntax" => :scss}).sass_configs(sass_content)[:syntax]
end
should "override user-set cache setting" do
assert_equal false, converter("cache" => true).sass_configs[:cache]
end
end
context "converting sass" do