def test_green_text(): x = "{}{}{}".format(colorama.Fore.GREEN, "foo", colorama.Style.RESET_ALL) assert x == logger.green_text("foo")
def test_green_text(monkeypatch): monkeypatch.setenv("PY_COLORS", "1") x = "{}{}{}".format(colorama.Fore.GREEN, "foo", colorama.Style.RESET_ALL) assert x == logger.green_text("foo") monkeypatch.setenv("PY_COLORS", "0")
def test_green_text(): x = '{}{}{}'.format(colorama.Fore.GREEN, 'foo', colorama.Style.RESET_ALL) assert x == logger.green_text('foo')