spec/engine_spec.rb in less-0.8.10 vs spec/engine_spec.rb in less-0.8.11
- old
+ new
@@ -27,9 +27,13 @@
end
it "should handle instances of double-quotes" do
lessify("blockquote:before, blockquote:after, q:before, q:after {\n content: \"\"; }").should == "blockquote:before, blockquote:after, q:before, q:after { content: ''; }"
end
+
+ it "should parse tag attributes" do
+ lessify("input[type=text] { color: red; }").should == "input[type=text] { color: red; }"
+ end
end
end