spec/convertions_spec.rb in beautiful-css-0.0.9 vs spec/convertions_spec.rb in beautiful-css-0.0.10

- old
+ new

@@ -164,9 +164,25 @@ + it 'should ignore case for style' do + dirty = <<DIRTY +a +{ background:green; } +a +{ BACKGROUND:green; } +DIRTY + clean = <<CLEAN +a +{ background:green } +CLEAN + assert_renders dirty, clean + end + + +