예제 #1
0
파일: test_log.py 프로젝트: 1stvamp/pip
def test_should_color_isatty():
    class FakeTTY(object):
        def isatty(self):
            return True

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

    consumer = FakeTTY()
    assert should_color(consumer, {}, std=[consumer])
예제 #3
0
파일: test_log.py 프로젝트: 1stvamp/pip
def test_should_color_std():
    assert not should_color(object(), {}, std=[object()])
예제 #4
0
파일: test_log.py 프로젝트: 1stvamp/pip
def test_should_color_notty_environ():
    consumer = object()
    assert not should_color(consumer, {}, std=[consumer])
예제 #5
0
파일: test_log.py 프로젝트: 1stvamp/pip
def test_should_color_environ():
    consumer = object()
    assert should_color(consumer, {"TERM": "ANSI"}, std=[consumer])
예제 #6
0
def test_should_color_std():
    assert not should_color(object(), {}, std=[object()])
예제 #7
0
def test_should_color_notty_environ():
    consumer = object()
    assert not should_color(consumer, {}, std=[consumer])
예제 #8
0
def test_should_color_environ():
    consumer = object()
    assert should_color(consumer, {"TERM": "ANSI"}, std=[consumer])