]> source.dussan.org Git - vaadin-framework.git/commitdiff
Move passing Sass tests from sasslangbroken to sasslang.
authorMika Murtojarvi <mika@vaadin.com>
Wed, 12 Feb 2014 13:50:18 +0000 (15:50 +0200)
committerMika Murtojarvi <mika@vaadin.com>
Wed, 12 Feb 2014 13:59:43 +0000 (15:59 +0200)
Change-Id: Iac66afbcc2e0e1bdeb417bfe8292f57e4d2287df

24 files changed:
theme-compiler/tests/resources/sasslang/css/36-test_extend_self_loop.css [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/css/37-test_extend_warns_when_extendee_doesnt_exist.css [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/css/38-test_extend_warns_when_extension_fails.css [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/css/57-test_long_extendee_requires_all_selectors.css [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/css/60-test_long_extender_aborts_unification.css [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/css/71-test_nested_extender_aborts_unification.css [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/scss/36-test_extend_self_loop.scss [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/scss/38-test_extend_warns_when_extension_fails.scss [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/scss/57-test_long_extendee_requires_all_selectors.scss [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/scss/60-test_long_extender_aborts_unification.scss [new file with mode: 0644]
theme-compiler/tests/resources/sasslang/scss/71-test_nested_extender_aborts_unification.scss [new file with mode: 0644]
theme-compiler/tests/resources/sasslangbroken/css/36-test_extend_self_loop.css [deleted file]
theme-compiler/tests/resources/sasslangbroken/css/37-test_extend_warns_when_extendee_doesnt_exist.css [deleted file]
theme-compiler/tests/resources/sasslangbroken/css/38-test_extend_warns_when_extension_fails.css [deleted file]
theme-compiler/tests/resources/sasslangbroken/css/57-test_long_extendee_requires_all_selectors.css [deleted file]
theme-compiler/tests/resources/sasslangbroken/css/60-test_long_extender_aborts_unification.css [deleted file]
theme-compiler/tests/resources/sasslangbroken/css/71-test_nested_extender_aborts_unification.css [deleted file]
theme-compiler/tests/resources/sasslangbroken/scss/36-test_extend_self_loop.scss [deleted file]
theme-compiler/tests/resources/sasslangbroken/scss/37-test_extend_warns_when_extendee_doesnt_exist.scss [deleted file]
theme-compiler/tests/resources/sasslangbroken/scss/38-test_extend_warns_when_extension_fails.scss [deleted file]
theme-compiler/tests/resources/sasslangbroken/scss/57-test_long_extendee_requires_all_selectors.scss [deleted file]
theme-compiler/tests/resources/sasslangbroken/scss/60-test_long_extender_aborts_unification.scss [deleted file]
theme-compiler/tests/resources/sasslangbroken/scss/71-test_nested_extender_aborts_unification.scss [deleted file]

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 (file)
index 0000000..234d524
--- /dev/null
@@ -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 (file)
index 0000000..8b13789
--- /dev/null
@@ -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 (file)
index 0000000..29116d8
--- /dev/null
@@ -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 (file)
index 0000000..234d524
--- /dev/null
@@ -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 (file)
index 0000000..18bc24e
--- /dev/null
@@ -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 (file)
index 0000000..2337e9a
--- /dev/null
@@ -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 (file)
index 0000000..ac40f00
--- /dev/null
@@ -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 (file)
index 0000000..cd54108
--- /dev/null
@@ -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 (file)
index 0000000..8381c72
--- /dev/null
@@ -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 (file)
index 0000000..011d26a
--- /dev/null
@@ -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 (file)
index 0000000..5238f3f
--- /dev/null
@@ -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 (file)
index 0000000..bcbb6e1
--- /dev/null
@@ -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 (file)
index 234d524..0000000
+++ /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 (file)
index 8b13789..0000000
+++ /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 (file)
index 29116d8..0000000
+++ /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 (file)
index 234d524..0000000
+++ /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 (file)
index 18bc24e..0000000
+++ /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 (file)
index 2337e9a..0000000
+++ /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 (file)
index ac40f00..0000000
+++ /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 (file)
index cd54108..0000000
+++ /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 (file)
index 8381c72..0000000
+++ /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 (file)
index 011d26a..0000000
+++ /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 (file)
index 5238f3f..0000000
+++ /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 (file)
index bcbb6e1..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-baz.foo {a: b}
-foo bar {@extend .foo}