Index: lib/src/prism/tests/languages/stylus/boolean_feature.test |
diff --git a/lib/src/prism/tests/languages/stylus/boolean_feature.test b/lib/src/prism/tests/languages/stylus/boolean_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..37eff87d7a5d48555a3dd00c09954aeda0ab8527 |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/stylus/boolean_feature.test |
@@ -0,0 +1,21 @@ |
+a = true |
+b = false |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["variable-declaration", [ |
+ ["variable", "a"], |
+ ["operator", "="], |
+ ["boolean", "true"] |
+ ]], |
+ ["variable-declaration", [ |
+ ["variable", "b"], |
+ ["operator", "="], |
+ ["boolean", "false"] |
+ ]] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for booleans. |