From: Mika Murtojarvi Date: Wed, 12 Feb 2014 13:50:18 +0000 (+0200) Subject: Move passing Sass tests from sasslangbroken to sasslang. X-Git-Tag: 7.2.0.beta1~160 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3a9327925b2d987430866a6ec1806a4b35ff2697;p=vaadin-framework.git Move passing Sass tests from sasslangbroken to sasslang. Change-Id: Iac66afbcc2e0e1bdeb417bfe8292f57e4d2287df --- diff --git a/theme-compiler/tests/resources/sasslang/css/36-test_extend_self_loop.css b/theme-compiler/tests/resources/sasslang/css/36-test_extend_self_loop.css new file mode 100644 index 0000000000..234d524066 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/36-test_extend_self_loop.css @@ -0,0 +1,3 @@ +.foo { + a: b; +} diff --git a/theme-compiler/tests/resources/sasslang/css/37-test_extend_warns_when_extendee_doesnt_exist.css b/theme-compiler/tests/resources/sasslang/css/37-test_extend_warns_when_extendee_doesnt_exist.css new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/37-test_extend_warns_when_extendee_doesnt_exist.css @@ -0,0 +1 @@ + diff --git a/theme-compiler/tests/resources/sasslang/css/38-test_extend_warns_when_extension_fails.css b/theme-compiler/tests/resources/sasslang/css/38-test_extend_warns_when_extension_fails.css new file mode 100644 index 0000000000..29116d880b --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/38-test_extend_warns_when_extension_fails.css @@ -0,0 +1,3 @@ +a.bar { + a: b; +} diff --git a/theme-compiler/tests/resources/sasslang/css/57-test_long_extendee_requires_all_selectors.css b/theme-compiler/tests/resources/sasslang/css/57-test_long_extendee_requires_all_selectors.css new file mode 100644 index 0000000000..234d524066 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/57-test_long_extendee_requires_all_selectors.css @@ -0,0 +1,3 @@ +.foo { + a: b; +} diff --git a/theme-compiler/tests/resources/sasslang/css/60-test_long_extender_aborts_unification.css b/theme-compiler/tests/resources/sasslang/css/60-test_long_extender_aborts_unification.css new file mode 100644 index 0000000000..18bc24e7cd --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/60-test_long_extender_aborts_unification.css @@ -0,0 +1,3 @@ +a.foo#bar { + a: b; +} diff --git a/theme-compiler/tests/resources/sasslang/css/71-test_nested_extender_aborts_unification.css b/theme-compiler/tests/resources/sasslang/css/71-test_nested_extender_aborts_unification.css new file mode 100644 index 0000000000..2337e9af40 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/71-test_nested_extender_aborts_unification.css @@ -0,0 +1,3 @@ +baz.foo { + a: b; +} diff --git a/theme-compiler/tests/resources/sasslang/scss/36-test_extend_self_loop.scss b/theme-compiler/tests/resources/sasslang/scss/36-test_extend_self_loop.scss new file mode 100644 index 0000000000..ac40f00573 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/36-test_extend_self_loop.scss @@ -0,0 +1 @@ +.foo {a: b; @extend .foo} diff --git a/theme-compiler/tests/resources/sasslang/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss b/theme-compiler/tests/resources/sasslang/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss new file mode 100644 index 0000000000..cd54108c97 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss @@ -0,0 +1 @@ +.foo {@extend .bar} diff --git a/theme-compiler/tests/resources/sasslang/scss/38-test_extend_warns_when_extension_fails.scss b/theme-compiler/tests/resources/sasslang/scss/38-test_extend_warns_when_extension_fails.scss new file mode 100644 index 0000000000..8381c7279a --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/38-test_extend_warns_when_extension_fails.scss @@ -0,0 +1,2 @@ +a.bar {a: b} +b.foo {@extend .bar} diff --git a/theme-compiler/tests/resources/sasslang/scss/57-test_long_extendee_requires_all_selectors.scss b/theme-compiler/tests/resources/sasslang/scss/57-test_long_extendee_requires_all_selectors.scss new file mode 100644 index 0000000000..011d26a83e --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/57-test_long_extendee_requires_all_selectors.scss @@ -0,0 +1,2 @@ +.foo {a: b} +.baz {@extend .foo.bar} diff --git a/theme-compiler/tests/resources/sasslang/scss/60-test_long_extender_aborts_unification.scss b/theme-compiler/tests/resources/sasslang/scss/60-test_long_extender_aborts_unification.scss new file mode 100644 index 0000000000..5238f3f93e --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/60-test_long_extender_aborts_unification.scss @@ -0,0 +1,2 @@ +a.foo#bar {a: b} +h1.baz {@extend .foo} diff --git a/theme-compiler/tests/resources/sasslang/scss/71-test_nested_extender_aborts_unification.scss b/theme-compiler/tests/resources/sasslang/scss/71-test_nested_extender_aborts_unification.scss new file mode 100644 index 0000000000..bcbb6e181d --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/71-test_nested_extender_aborts_unification.scss @@ -0,0 +1,2 @@ +baz.foo {a: b} +foo bar {@extend .foo} diff --git a/theme-compiler/tests/resources/sasslangbroken/css/36-test_extend_self_loop.css b/theme-compiler/tests/resources/sasslangbroken/css/36-test_extend_self_loop.css deleted file mode 100644 index 234d524066..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/36-test_extend_self_loop.css +++ /dev/null @@ -1,3 +0,0 @@ -.foo { - a: b; -} diff --git a/theme-compiler/tests/resources/sasslangbroken/css/37-test_extend_warns_when_extendee_doesnt_exist.css b/theme-compiler/tests/resources/sasslangbroken/css/37-test_extend_warns_when_extendee_doesnt_exist.css deleted file mode 100644 index 8b13789179..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/37-test_extend_warns_when_extendee_doesnt_exist.css +++ /dev/null @@ -1 +0,0 @@ - diff --git a/theme-compiler/tests/resources/sasslangbroken/css/38-test_extend_warns_when_extension_fails.css b/theme-compiler/tests/resources/sasslangbroken/css/38-test_extend_warns_when_extension_fails.css deleted file mode 100644 index 29116d880b..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/38-test_extend_warns_when_extension_fails.css +++ /dev/null @@ -1,3 +0,0 @@ -a.bar { - a: b; -} diff --git a/theme-compiler/tests/resources/sasslangbroken/css/57-test_long_extendee_requires_all_selectors.css b/theme-compiler/tests/resources/sasslangbroken/css/57-test_long_extendee_requires_all_selectors.css deleted file mode 100644 index 234d524066..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/57-test_long_extendee_requires_all_selectors.css +++ /dev/null @@ -1,3 +0,0 @@ -.foo { - a: b; -} diff --git a/theme-compiler/tests/resources/sasslangbroken/css/60-test_long_extender_aborts_unification.css b/theme-compiler/tests/resources/sasslangbroken/css/60-test_long_extender_aborts_unification.css deleted file mode 100644 index 18bc24e7cd..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/60-test_long_extender_aborts_unification.css +++ /dev/null @@ -1,3 +0,0 @@ -a.foo#bar { - a: b; -} diff --git a/theme-compiler/tests/resources/sasslangbroken/css/71-test_nested_extender_aborts_unification.css b/theme-compiler/tests/resources/sasslangbroken/css/71-test_nested_extender_aborts_unification.css deleted file mode 100644 index 2337e9af40..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/css/71-test_nested_extender_aborts_unification.css +++ /dev/null @@ -1,3 +0,0 @@ -baz.foo { - a: b; -} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/36-test_extend_self_loop.scss b/theme-compiler/tests/resources/sasslangbroken/scss/36-test_extend_self_loop.scss deleted file mode 100644 index ac40f00573..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/36-test_extend_self_loop.scss +++ /dev/null @@ -1 +0,0 @@ -.foo {a: b; @extend .foo} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss b/theme-compiler/tests/resources/sasslangbroken/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss deleted file mode 100644 index cd54108c97..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss +++ /dev/null @@ -1 +0,0 @@ -.foo {@extend .bar} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/38-test_extend_warns_when_extension_fails.scss b/theme-compiler/tests/resources/sasslangbroken/scss/38-test_extend_warns_when_extension_fails.scss deleted file mode 100644 index 8381c7279a..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/38-test_extend_warns_when_extension_fails.scss +++ /dev/null @@ -1,2 +0,0 @@ -a.bar {a: b} -b.foo {@extend .bar} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/57-test_long_extendee_requires_all_selectors.scss b/theme-compiler/tests/resources/sasslangbroken/scss/57-test_long_extendee_requires_all_selectors.scss deleted file mode 100644 index 011d26a83e..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/57-test_long_extendee_requires_all_selectors.scss +++ /dev/null @@ -1,2 +0,0 @@ -.foo {a: b} -.baz {@extend .foo.bar} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/60-test_long_extender_aborts_unification.scss b/theme-compiler/tests/resources/sasslangbroken/scss/60-test_long_extender_aborts_unification.scss deleted file mode 100644 index 5238f3f93e..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/60-test_long_extender_aborts_unification.scss +++ /dev/null @@ -1,2 +0,0 @@ -a.foo#bar {a: b} -h1.baz {@extend .foo} diff --git a/theme-compiler/tests/resources/sasslangbroken/scss/71-test_nested_extender_aborts_unification.scss b/theme-compiler/tests/resources/sasslangbroken/scss/71-test_nested_extender_aborts_unification.scss deleted file mode 100644 index bcbb6e181d..0000000000 --- a/theme-compiler/tests/resources/sasslangbroken/scss/71-test_nested_extender_aborts_unification.scss +++ /dev/null @@ -1,2 +0,0 @@ -baz.foo {a: b} -foo bar {@extend .foo}