summaryrefslogtreecommitdiffstats
path: root/test/units/test_no_tty.py
blob: 1103ff08cecb138f6ea87b0be89ac36c3daf4251 (plain)
1
2
3
4
5
6
7
8
9
from __future__ import annotations

import sys


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