Example #1
0
def test_should_color_isatty():
    class FakeTTY(object):
        def isatty(self):
            return True

    consumer = FakeTTY()
    assert should_color(consumer, {}, std=[consumer])
Example #2
0
def test_should_color_isatty():
    class FakeTTY(object):
        def isatty(self):
            return True

    consumer = FakeTTY()
    assert should_color(consumer, {}, std=[consumer])
Example #3
0
def test_should_color_std():
    assert not should_color(object(), {}, std=[object()])
Example #4
0
def test_should_color_notty_environ():
    consumer = object()
    assert not should_color(consumer, {}, std=[consumer])
Example #5
0
def test_should_color_environ():
    consumer = object()
    assert should_color(consumer, {"TERM": "ANSI"}, std=[consumer])
Example #6
0
def test_should_color_std():
    assert not should_color(object(), {}, std=[object()])
Example #7
0
def test_should_color_notty_environ():
    consumer = object()
    assert not should_color(consumer, {}, std=[consumer])
Example #8
0
def test_should_color_environ():
    consumer = object()
    assert should_color(consumer, {"TERM": "ANSI"}, std=[consumer])