summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2013-08-23 19:47:01 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2013-08-23 19:47:01 -0700
commit747f09eac073e409e865cdf1ab98c486074bc1c5 (patch)
tree76af6db9376c16c01a59bd3bad1d11c9ece9e5e5
parent15be21e290483e89d4fe19a960047699fdfb542d (diff)
downloadpyscss-747f09eac073e409e865cdf1ab98c486074bc1c5.tar.gz
Slurpy test.
-rw-r--r--scss/tests/files/bugs/argspec-slurpy-arguments.css3
-rw-r--r--scss/tests/files/bugs/argspec-slurpy-arguments.scss7
2 files changed, 10 insertions, 0 deletions
diff --git a/scss/tests/files/bugs/argspec-slurpy-arguments.css b/scss/tests/files/bugs/argspec-slurpy-arguments.css
new file mode 100644
index 0000000..7eb750f
--- /dev/null
+++ b/scss/tests/files/bugs/argspec-slurpy-arguments.css
@@ -0,0 +1,3 @@
+.shadows {
+ box-shadow: 0px 4px 5px #666, 2px 6px 10px #999;
+}
diff --git a/scss/tests/files/bugs/argspec-slurpy-arguments.scss b/scss/tests/files/bugs/argspec-slurpy-arguments.scss
new file mode 100644
index 0000000..df7c97e
--- /dev/null
+++ b/scss/tests/files/bugs/argspec-slurpy-arguments.scss
@@ -0,0 +1,7 @@
+@mixin box-shadow($shadows...) {
+ box-shadow: $shadows;
+}
+
+.shadows {
+ @include box-shadow(0px 4px 5px #666, 2px 6px 10px #999);
+}