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
|
# -*- 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-09-12 09:42:30 +0100 (Wed, 12 Sep 2012) $
# Id: $Id: 90-regression-wikipedia.t 71 2012-09-12 08:42:30Z zerojinx $
# $HeadURL: https://text-sass.svn.sourceforge.net/svnroot/text-sass/trunk/t/90-regression-wikipedia.t $
#
use strict;
use warnings;
use Test::More tests => 1;
use Text::Sass;
my $sass = <<EOT;
#header
background: #FFFFFF
/* -or- :background #FFFFFF
.error
color: #FF0000
a
text-decoration: none
&:hover
text-decoration: underline
EOT
my $css = <<EOT;
#header {
background: #FFFFFF;
}
#header .error {
color: #FF0000;
}
#header a {
text-decoration: none;
}
#header a:hover {
text-decoration: underline;
}
EOT
my $ts = Text::Sass->new;
is($ts->sass2css($sass), $css, 'wikipedia example 1');
|