aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss b/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss
new file mode 100644
index 0000000000..dc64ddf6f8
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss
@@ -0,0 +1,9 @@
+@mixin test($foo) {
+ #{$foo} {
+ @content;
+ }
+}
+
+@include test("foo") {
+ lorem: ipsum;
+} \ No newline at end of file