mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-04 03:37:17 +00:00
There's a new option --palette-transparent to turn this off if you want to use your own terminal background.
13 lines
368 B
Python
13 lines
368 B
Python
import os
|
|
from nose.plugins.skip import SkipTest
|
|
if os.name == "nt":
|
|
raise SkipTest("Skipped on Windows.")
|
|
import libmproxy.console.palettes as palettes
|
|
|
|
|
|
class TestPalette:
|
|
def test_helptext(self):
|
|
for i in palettes.palettes.values():
|
|
assert i.palette(False)
|
|
for i in palettes.palettes.values():
|
|
assert i.palette(True)
|