mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
12 lines
283 B
Python
12 lines
283 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()
|