Sha256: 45387b579bdf1f1f04baa5d14076af3a79c5f9c173cac5c975300a1a0c4cb1f0
Contents?: true
Size: 539 Bytes
Versions: 3
Compression:
Stored size: 539 Bytes
Contents
require 'test/unit' require 'sass' require 'sass-json-vars' class SassJSONVarsTest < Test::Unit::TestCase def test_strings scss = Sass.compile_file("test/fixtures/strings/style.scss") assert_equal "body {\n color: #cc3333; }\n", scss end def test_lists scss = Sass.compile_file("test/fixtures/lists/style.scss") assert_equal "body {\n color: #cc3333; }\n", scss end def test_maps scss = Sass.compile_file("test/fixtures/maps/style.scss") assert_equal "body {\n color: #cc3333; }\n", scss end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sass-json-vars-0.3.0 | test/sass-json-vars_test.rb |
sass-json-vars-0.2.1 | test/sass-json-vars_test.rb |
sass-json-vars-0.2.0 | test/sass-json-vars_test.rb |