1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
# -*- mode: cperl; tab-width: 8; indent-tabs-mode: nil; basic-offset: 2 -*-
# vim:ts=8:sw=2:et:sta:sts=2
#########
# Author: rmp
# Last Modified: $Date: 2012-11-10 16:33:37 +0000 (Sat, 10 Nov 2012) $
# Id: $Id: 90-regression-aa-74181.t 75 2012-11-10 16:33:37Z zerojinx $
# $HeadURL: https://text-sass.svn.sourceforge.net/svnroot/text-sass/trunk/t/90-regression-aa-74181.t $
#
use strict;
use warnings;
use Text::Sass '0.97';
use Test::More tests => 2;
{
my $css = <<EOT;
a {
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
EOT
my $scss = <<EOT;
a {
font-weight: bold;
text-decoration: none;
&:hover { text-decoration: underline; }
}
EOT
my $ts = Text::Sass->new();
is($ts->scss2css($scss), $css, "simple parent reference");
}
{
my $css = <<EOT;
a {
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body.firefox a {
font-weight: normal;
}
EOT
my $scss = <<EOT;
a {
font-weight: bold;
text-decoration: none;
&:hover { text-decoration: underline; }
body.firefox & { font-weight: normal; }
}
EOT
my $ts = Text::Sass->new();
is($ts->scss2css($scss), $css, "complex parent reference");
}
|