diff tests/test_parse_files/test_call.py @ 53:1a815946c2e5

Implement keywords in expr::Call, and add some tests.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 12 Jun 2016 02:37:28 +0100
parents f23c5dafea78
children
line wrap: on
line diff
--- a/tests/test_parse_files/test_call.py
+++ b/tests/test_parse_files/test_call.py
@@ -1,1 +1,5 @@
-func(1, b)
+func()
+func(1)
+func(1, a)
+func(b=2, c=3)
+func(a, b, c=3, d=4, **kwargs)