mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Forgot to add testing templates.
git-svn-id: svn://hamptoncatlin.com/haml/trunk@350 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
parent
7cd7e603b1
commit
3e08620667
6 changed files with 82 additions and 0 deletions
5
test/sass/results/compact.css
Normal file
5
test/sass/results/compact.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
#main { width: 15em; color: #0000ff; }
|
||||
#main p { border-style: dotted; border-width: 2px; }
|
||||
#main .cool { width: 100px; }
|
||||
|
||||
#left { font-size: 2em; font-weight: bold; float: left; }
|
18
test/sass/results/expanded.css
Normal file
18
test/sass/results/expanded.css
Normal file
|
@ -0,0 +1,18 @@
|
|||
#main {
|
||||
width: 15em;
|
||||
color: #0000ff;
|
||||
}
|
||||
#main p {
|
||||
border-style: dotted;
|
||||
border-width: 2px;
|
||||
}
|
||||
#main .cool {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
#left {
|
||||
font-size: 2em;
|
||||
font-weight: bold;
|
||||
|
||||
float: left;
|
||||
}
|
14
test/sass/results/nested.css
Normal file
14
test/sass/results/nested.css
Normal file
|
@ -0,0 +1,14 @@
|
|||
#main {
|
||||
width: 15em;
|
||||
color: #0000ff; }
|
||||
#main p {
|
||||
border-style: dotted;
|
||||
border-width: 2px; }
|
||||
#main .cool {
|
||||
width: 100px; }
|
||||
|
||||
#left {
|
||||
font-size: 2em;
|
||||
font-weight: bold;
|
||||
|
||||
float: left; }
|
15
test/sass/templates/compact.sass
Normal file
15
test/sass/templates/compact.sass
Normal file
|
@ -0,0 +1,15 @@
|
|||
#main
|
||||
:width 15em
|
||||
:color #0000ff
|
||||
p
|
||||
:border
|
||||
:style dotted
|
||||
:width 2px
|
||||
.cool
|
||||
:width 100px
|
||||
|
||||
#left
|
||||
:font
|
||||
:size 2em
|
||||
:weight bold
|
||||
:float left
|
15
test/sass/templates/expanded.sass
Normal file
15
test/sass/templates/expanded.sass
Normal file
|
@ -0,0 +1,15 @@
|
|||
#main
|
||||
:width 15em
|
||||
:color #0000ff
|
||||
p
|
||||
:border
|
||||
:style dotted
|
||||
:width 2px
|
||||
.cool
|
||||
:width 100px
|
||||
|
||||
#left
|
||||
:font
|
||||
:size 2em
|
||||
:weight bold
|
||||
:float left
|
15
test/sass/templates/nested.sass
Normal file
15
test/sass/templates/nested.sass
Normal file
|
@ -0,0 +1,15 @@
|
|||
#main
|
||||
:width 15em
|
||||
:color #0000ff
|
||||
p
|
||||
:border
|
||||
:style dotted
|
||||
:width 2px
|
||||
.cool
|
||||
:width 100px
|
||||
|
||||
#left
|
||||
:font
|
||||
:size 2em
|
||||
:weight bold
|
||||
:float left
|
Loading…
Add table
Reference in a new issue