(executor, command, verbose, pattern, pgspecial)
| 617 | @pytest.mark.parametrize("verbose", ["", "+"]) |
| 618 | @pytest.mark.parametrize("pattern", ["", "x", "*.*", "x.y", "x.*", "*.y"]) |
| 619 | def test_describe_special(executor, command, verbose, pattern, pgspecial): |
| 620 | # We don't have any tests for the output of any of the special commands, |
| 621 | # but we can at least make sure they run without error |
| 622 | sql = r"\{command}{verbose} {pattern}".format(**locals()) |
| 623 | list(executor.run(sql, pgspecial=pgspecial)) |
| 624 | |
| 625 | |
| 626 | @dbtest |
nothing calls this directly
no test coverage detected
searching dependent graphs…