summaryrefslogtreecommitdiffstats
path: root/tests/test_smart_completion_public_schema_only.py
diff options
context:
space:
mode:
authorJoakim Koljonen <koljonen@outlook.com>2017-06-25 12:49:23 +0200
committerJoakim Koljonen <koljonen@outlook.com>2017-06-25 12:49:23 +0200
commit5ef0c0ccead444d4c6d7cd9061849c6e22cf723a (patch)
treec0c3f88eb2da777375a162a76598b600a94638ed /tests/test_smart_completion_public_schema_only.py
parentf355c30ef79a539943c641be0376f5638caf28b0 (diff)
Suggest function signature after `CREATE FUNCTION`
Diffstat (limited to 'tests/test_smart_completion_public_schema_only.py')
-rw-r--r--tests/test_smart_completion_public_schema_only.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_smart_completion_public_schema_only.py b/tests/test_smart_completion_public_schema_only.py
index 2c1751a7..a8130b1b 100644
--- a/tests/test_smart_completion_public_schema_only.py
+++ b/tests/test_smart_completion_public_schema_only.py
@@ -87,10 +87,10 @@ def test_function_column_name(completer):
)
-@parametrize('text', ['ALTER FUNCTION set_ret', 'DROP FUNCTION set_ret'])
+@parametrize('action', ['ALTER', 'DROP', 'CREATE', 'CREATE OR REPLACE'])
@parametrize('completer', completers())
-def test_drop_alter_function(completer, text):
- assert get_result(completer, text) == [
+def test_drop_alter_function(completer, action):
+ assert get_result(completer, action + ' FUNCTION set_ret') == [
function('set_returning_func(x integer, y integer)', -len('set_ret'))
]