1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-06 02:07:53 +03:00

Update the tests for named query.

This commit is contained in:
Amjith Ramanujam 2015-08-25 19:41:04 -07:00
parent 72bb5a39d4
commit d222e085b7

View File

@ -559,12 +559,13 @@ def test_suggest_where_keyword(text):
]
@pytest.mark.parametrize('text, before, expected', [
('SELECT ', 'SELECT ', [
('\\ns abc SELECT ', 'SELECT ', [
{'type': 'column', 'tables': []},
{'type': 'function', 'schema': []}
{'type': 'function', 'schema': []},
{'type': 'keyword'}
]),
('SELECT foo ', 'SELECT foo ', [{'type': 'keyword'}]),
('SELECT t1. FROM tabl1 t1', 'SELECT t1.', [
('\\ns abc SELECT foo ', 'SELECT foo ', [{'type': 'keyword'}]),
('\\ns abc SELECT t1. FROM tabl1 t1', 'SELECT t1.', [
{'type': 'table', 'schema': 't1'},
{'type': 'view', 'schema': 't1'},
{'type': 'column', 'tables': [(None, 'tabl1', 't1')]},