Index: lib/src/prism/tests/languages/qore/function_feature.test |
diff --git a/lib/src/prism/tests/languages/qore/function_feature.test b/lib/src/prism/tests/languages/qore/function_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2f0ba7ab156eb5672e777ac9028effe05ab2c533 |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/qore/function_feature.test |
@@ -0,0 +1,15 @@ |
+foo() |
+foo_bar() |
+Foo_bar_42() |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["function", "foo"], ["punctuation", "("], ["punctuation", ")"], |
+ ["function", "foo_bar"], ["punctuation", "("], ["punctuation", ")"], |
+ ["function", "Foo_bar_42"], ["punctuation", "("], ["punctuation", ")"] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for functions. |