Index: lib/src/prism/tests/languages/julia/operator_feature.test |
diff --git a/lib/src/prism/tests/languages/julia/operator_feature.test b/lib/src/prism/tests/languages/julia/operator_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..57f0d68c8b2b82db9fa7f636fcc5025165d78192 |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/julia/operator_feature.test |
@@ -0,0 +1,41 @@ |
++ += |
+- -= |
+* *= |
+/ /= // |
+\ \= |
+^ ^= |
+% %= |
+÷ ÷= |
+! != !== |
+& &= |
+| |= |> |
+$ $= |
+< <= <: << <<= |
+> >= >> >>= >>> >>>= |
+= == === |
+~ ≠ ≤ ≥ |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["operator", "+"], ["operator", "+="], |
+ ["operator", "-"], ["operator", "-="], |
+ ["operator", "*"], ["operator", "*="], |
+ ["operator", "/"], ["operator", "/="], ["operator", "//"], |
+ ["operator", "\\"], ["operator", "\\="], |
+ ["operator", "^"], ["operator", "^="], |
+ ["operator", "%"], ["operator", "%="], |
+ ["operator", "÷"], ["operator", "÷="], |
+ ["operator", "!"], ["operator", "!="], ["operator", "!=="], |
+ ["operator", "&"], ["operator", "&="], |
+ ["operator", "|"], ["operator", "|="], ["operator", "|>"], |
+ ["operator", "$"], ["operator", "$="], |
+ ["operator", "<"], ["operator", "<="], ["operator", "<:"], ["operator", "<<"], ["operator", "<<="], |
+ ["operator", ">"], ["operator", ">="], ["operator", ">>"], ["operator", ">>="], ["operator", ">>>"], ["operator", ">>>="], |
+ ["operator", "="], ["operator", "=="], ["operator", "==="], |
+ ["operator", "~"], ["operator", "≠"], ["operator", "≤"], ["operator", "≥"] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for operators. |