summaryrefslogtreecommitdiffstats
path: root/tests/test_prompt_utils.py
blob: 4986dc576070e19bc0c4994353d996bfccf1cc6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-


import click

from pgcli.packages.prompt_utils import confirm_destructive_query


def test_confirm_destructive_query_notty():
    stdin = click.get_text_stream("stdin")
    if not stdin.isatty():
        sql = "drop database foo;"
        assert confirm_destructive_query(sql) is None