Index: lib/src/prism/tests/languages/scss/url_feature.test |
diff --git a/lib/src/prism/tests/languages/scss/url_feature.test b/lib/src/prism/tests/languages/scss/url_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..42e38707353f973b91bbd06209f7610c772510f6 |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/scss/url_feature.test |
@@ -0,0 +1,19 @@ |
+url('foo.png') |
+font-url('foo.ttf') |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["url", "url"], |
+ ["punctuation", "("], |
+ ["string", "'foo.png'"], |
+ ["punctuation", ")"], |
+ ["url", "font-url"], |
+ ["punctuation", "("], |
+ ["string", "'foo.ttf'"], |
+ ["punctuation", ")"] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for URLs. |