()
| 8 | empty_config = Configurable() |
| 9 | |
| 10 | def test_parse_no_sql(): |
| 11 | assert parse("will:longliveliz@localhost/shakes", empty_config) == \ |
| 12 | {'connection': "will:longliveliz@localhost/shakes", |
| 13 | 'sql': ''} |
| 14 | |
| 15 | def test_parse_with_sql(): |
| 16 | assert parse("postgresql://will:longliveliz@localhost/shakes SELECT * FROM work", |