Index: lib/src/prism/tests/languages/stylus/string_feature.test |
diff --git a/lib/src/prism/tests/languages/stylus/string_feature.test b/lib/src/prism/tests/languages/stylus/string_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..934f94f077e51565f52f2930df0c706f9321a43e |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/stylus/string_feature.test |
@@ -0,0 +1,33 @@ |
+content: "" |
+content: "foo" |
+content: '' |
+content: 'foo' |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["property-declaration", [ |
+ ["property", ["content"]], |
+ ["punctuation", ":"], |
+ ["string", "\"\""] |
+ ]], |
+ ["property-declaration", [ |
+ ["property", ["content"]], |
+ ["punctuation", ":"], |
+ ["string", "\"foo\""] |
+ ]], |
+ ["property-declaration", [ |
+ ["property", ["content"]], |
+ ["punctuation", ":"], |
+ ["string", "''"] |
+ ]], |
+ ["property-declaration", [ |
+ ["property", ["content"]], |
+ ["punctuation", ":"], |
+ ["string", "'foo'"] |
+ ]] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for strings. |