diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2013-06-17 16:48:06 +0200 | 
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2013-06-17 16:48:06 +0200 | 
| commit | d462b444b7eed04927e77d8971d4b218459fdee3 (patch) | |
| tree | 98cfc69daa13dfe1b647ea89d9364bcc8117d624 /test/test_console_help.py | |
| parent | 84248d431bcad4a289f1ce82bf090da41970020b (diff) | |
| download | mitmproxy-d462b444b7eed04927e77d8971d4b218459fdee3.tar.gz mitmproxy-d462b444b7eed04927e77d8971d4b218459fdee3.tar.bz2 mitmproxy-d462b444b7eed04927e77d8971d4b218459fdee3.zip  | |
update tests to reflect changes to options.scripts
Diffstat (limited to 'test/test_console_help.py')
| -rw-r--r-- | test/test_console_help.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_console_help.py b/test/test_console_help.py index 98e202ad..6e1f9fad 100644 --- a/test/test_console_help.py +++ b/test/test_console_help.py @@ -1,3 +1,8 @@ +import os +from nose.plugins.skip import SkipTest +if os.name == "nt": +    raise SkipTest("Skipped on Windows.") +  import libmproxy.console.help as help  class DummyMaster:  | 
