Fix some failing test cases.

This commit is contained in:
Chris Eppstein 2010-05-08 23:52:31 -07:00
parent 5d0454dc02
commit b550613700
2 changed files with 7 additions and 7 deletions

View File

@ -81,8 +81,8 @@ class ConfigurationTest < Test::Unit::TestCase
assert Compass.configuration.to_sass_engine_options[:load_paths].include?("/home/chris/my_compass_project/../foo")
assert Compass.configuration.to_sass_engine_options[:load_paths].include?("/path/to/my/framework"), Compass.configuration.to_sass_engine_options[:load_paths].inspect
assert_equal "/home/chris/my_compass_project/css/framework", Compass.configuration.to_sass_plugin_options[:template_location]["/path/to/my/framework"]
assert_equal "/home/chris/my_compass_project/css/foo", Compass.configuration.to_sass_plugin_options[:template_location]["/home/chris/my_compass_project/../foo"]
assert_equal "/home/chris/my_compass_project/css/framework", Compass.configuration.to_sass_plugin_options[:template_location].find{|s,c| s == "/path/to/my/framework"}[1]
assert_equal "/home/chris/my_compass_project/css/foo", Compass.configuration.to_sass_plugin_options[:template_location].find{|s,c| s == "/home/chris/my_compass_project/../foo"}[1]
expected_serialization = <<EXPECTED
# Require any additional compass plugins here.
@ -111,8 +111,8 @@ EXPECTED
assert Compass.configuration.to_sass_engine_options[:load_paths].include?("/home/chris/my_compass_project/../foo")
assert Compass.configuration.to_sass_engine_options[:load_paths].include?("/path/to/my/framework"), Compass.configuration.to_sass_engine_options[:load_paths].inspect
assert_equal "/home/chris/my_compass_project/css/framework", Compass.configuration.to_sass_plugin_options[:template_location]["/path/to/my/framework"]
assert_equal "/home/chris/my_compass_project/css/foo", Compass.configuration.to_sass_plugin_options[:template_location]["/home/chris/my_compass_project/../foo"]
assert_equal "/home/chris/my_compass_project/css/framework", Compass.configuration.to_sass_plugin_options[:template_location].find{|s,c| s == "/path/to/my/framework"}[1]
assert_equal "/home/chris/my_compass_project/css/foo", Compass.configuration.to_sass_plugin_options[:template_location].find{|s,c| s == "/home/chris/my_compass_project/../foo"}[1]
expected_serialization = <<EXPECTED
# Require any additional compass plugins here.

View File

@ -13,7 +13,7 @@ h1, h2, h3, h4, h5, h6 {
h1 {
font-size: 3em;
line-height: 1;
margin-bottom: 0.5em; }
margin-bottom: 0.50em; }
h2 {
font-size: 2em;
@ -22,7 +22,7 @@ h2 {
h3 {
font-size: 1.5em;
line-height: 1;
margin-bottom: 1em; }
margin-bottom: 1.00em; }
h4 {
font-size: 1.2em;
@ -32,7 +32,7 @@ h4 {
h5 {
font-size: 1em;
font-weight: bold;
margin-bottom: 1.5em; }
margin-bottom: 1.50em; }
h6 {
font-size: 1em;