Index: lib/src/prism/tests/languages/makefile/symbol_feature.test |
diff --git a/lib/src/prism/tests/languages/makefile/symbol_feature.test b/lib/src/prism/tests/languages/makefile/symbol_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d1fe40b5d033b5e7cf1593ad9a1f471e132ed59b |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/makefile/symbol_feature.test |
@@ -0,0 +1,18 @@ |
+edit : |
+%oo: |
+$(foo): |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["symbol", ["edit "]], ["punctuation", ":"], |
+ ["symbol", ["%oo"]], ["punctuation", ":"], |
+ ["symbol", [ |
+ ["variable", "$"], |
+ "(foo)" |
+ ]], ["punctuation", ":"] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for targets, optionally containing interpolation. |