1
0
Fork 0
mycli/test/test_prompt_utils.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
286 B
Python
Raw Permalink Normal View History

import click
from mycli.packages.prompt_utils import confirm_destructive_query
def test_confirm_destructive_query_notty():
stdin = click.get_text_stream("stdin")
assert stdin.isatty() is False
sql = "drop database foo;"
assert confirm_destructive_query(sql) is None