示例#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])