summaryrefslogtreecommitdiffstats
path: root/test/units/test_no_tty.py
blob: 290c0b922ab8060046f27e28e15f739812c0f09a (plain)
1
2
3
4
5
6
7
import sys


def test_no_tty():
    assert not sys.stdin.isatty()
    assert not sys.stdout.isatty()
    assert not sys.stderr.isatty()