class CSS2SassTest

def test_nesting

def test_nesting
  assert_equal(<<SASS, css2sass(<<CSS))

display: none
a
  text-decoration: none
  span
    color: yellow
  &:hover
    text-decoration: underline
SS
 {
display: none;
 a {
text-decoration: none;
 a span {
color: yellow;
 a:hover {
text-decoration: underline;
S
end