From 3e08620667410c74a4583a62058d668cd5355237 Mon Sep 17 00:00:00 2001 From: nex3 Date: Tue, 6 Feb 2007 03:54:51 +0000 Subject: [PATCH] Forgot to add testing templates. git-svn-id: svn://hamptoncatlin.com/haml/trunk@350 7063305b-7217-0410-af8c-cdc13e5119b9 --- test/sass/results/compact.css | 5 +++++ test/sass/results/expanded.css | 18 ++++++++++++++++++ test/sass/results/nested.css | 14 ++++++++++++++ test/sass/templates/compact.sass | 15 +++++++++++++++ test/sass/templates/expanded.sass | 15 +++++++++++++++ test/sass/templates/nested.sass | 15 +++++++++++++++ 6 files changed, 82 insertions(+) create mode 100644 test/sass/results/compact.css create mode 100644 test/sass/results/expanded.css create mode 100644 test/sass/results/nested.css create mode 100644 test/sass/templates/compact.sass create mode 100644 test/sass/templates/expanded.sass create mode 100644 test/sass/templates/nested.sass diff --git a/test/sass/results/compact.css b/test/sass/results/compact.css new file mode 100644 index 00000000..bd6bc919 --- /dev/null +++ b/test/sass/results/compact.css @@ -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; } diff --git a/test/sass/results/expanded.css b/test/sass/results/expanded.css new file mode 100644 index 00000000..005586ed --- /dev/null +++ b/test/sass/results/expanded.css @@ -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; +} diff --git a/test/sass/results/nested.css b/test/sass/results/nested.css new file mode 100644 index 00000000..05a73c1b --- /dev/null +++ b/test/sass/results/nested.css @@ -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; } diff --git a/test/sass/templates/compact.sass b/test/sass/templates/compact.sass new file mode 100644 index 00000000..675fea4b --- /dev/null +++ b/test/sass/templates/compact.sass @@ -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 diff --git a/test/sass/templates/expanded.sass b/test/sass/templates/expanded.sass new file mode 100644 index 00000000..675fea4b --- /dev/null +++ b/test/sass/templates/expanded.sass @@ -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 diff --git a/test/sass/templates/nested.sass b/test/sass/templates/nested.sass new file mode 100644 index 00000000..675fea4b --- /dev/null +++ b/test/sass/templates/nested.sass @@ -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