Index: lib/src/prism/tests/languages/python/function_feature.test |
diff --git a/lib/src/prism/tests/languages/python/function_feature.test b/lib/src/prism/tests/languages/python/function_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ba764d791245346550116f287a233a2b29527a6b |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/python/function_feature.test |
@@ -0,0 +1,15 @@ |
+def Foo( |
+def foo_bar_42( |
+def _( |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["keyword", "def"], ["function", "Foo"], ["punctuation", "("], |
+ ["keyword", "def"], ["function", "foo_bar_42"], ["punctuation", "("], |
+ ["keyword", "def"], ["function", "_"], ["punctuation", "("] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for functions. |