Index: lib/src/prism/tests/languages/scheme/operator_feature.test |
diff --git a/lib/src/prism/tests/languages/scheme/operator_feature.test b/lib/src/prism/tests/languages/scheme/operator_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5904c1a3ed095f792bdae2bbee99545cd17ec92c |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/scheme/operator_feature.test |
@@ -0,0 +1,31 @@ |
+(+ |
+(- |
+(* |
+(/ |
+(% |
+(< |
+(<= |
+(> |
+(>= |
+(= |
+(=> |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["punctuation", "("], ["operator", "+"], |
+ ["punctuation", "("], ["operator", "-"], |
+ ["punctuation", "("], ["operator", "*"], |
+ ["punctuation", "("], ["operator", "/"], |
+ ["punctuation", "("], ["operator", "%"], |
+ ["punctuation", "("], ["operator", "<"], |
+ ["punctuation", "("], ["operator", "<="], |
+ ["punctuation", "("], ["operator", ">"], |
+ ["punctuation", "("], ["operator", ">="], |
+ ["punctuation", "("], ["operator", "="], |
+ ["punctuation", "("], ["operator", "=>"] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for operators. |