From 6f13d6bbba9e9cd13a75919e1bcab686709e6d5f Mon Sep 17 00:00:00 2001 From: Patrick Thomson Date: Wed, 21 Oct 2020 11:22:56 -0400 Subject: [PATCH] Define Python fixture --- test/fixtures/queries/python.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/fixtures/queries/python.py diff --git a/test/fixtures/queries/python.py b/test/fixtures/queries/python.py new file mode 100644 index 00000000..c90830a7 --- /dev/null +++ b/test/fixtures/queries/python.py @@ -0,0 +1,7 @@ +def foo(): pass +# declaration: function: 0, 0 + +def bar(): +# declaration: function, 3, 0 + foo() +# reference: call, 5, 4