summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/test/fixtures/custom-functions
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/node-sass/test/fixtures/custom-functions')
-rw-r--r--node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css3
-rw-r--r--node_modules/node-sass/test/fixtures/custom-functions/setter.scss1
-rw-r--r--node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css2
-rw-r--r--node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss1
4 files changed, 7 insertions, 0 deletions
diff --git a/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css b/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css
new file mode 100644
index 0000000..9b67ea9
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/custom-functions/setter-expected.css
@@ -0,0 +1,3 @@
+div {
+ width: 42rem;
+ height: 84px; }
diff --git a/node_modules/node-sass/test/fixtures/custom-functions/setter.scss b/node_modules/node-sass/test/fixtures/custom-functions/setter.scss
new file mode 100644
index 0000000..fbc6116
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/custom-functions/setter.scss
@@ -0,0 +1 @@
+div { width: foo(42px); height: bar(42px); }
diff --git a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css
new file mode 100644
index 0000000..741d2cb
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion-expected.css
@@ -0,0 +1,2 @@
+div {
+ color: "barbar"; }
diff --git a/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss
new file mode 100644
index 0000000..4e6403f
--- /dev/null
+++ b/node_modules/node-sass/test/fixtures/custom-functions/string-conversion.scss
@@ -0,0 +1 @@
+div { color: foo("bar"); }