tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

__init__.py (596B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 __version__ = "3.1.0"
      6 
      7 from unittest.case import SkipTest, skip
      8 
      9 from .decorators import (
     10    parameterized,
     11    run_if_manage_instance,
     12    skip_if_chrome,
     13    skip_if_desktop,
     14    skip_unless_browser_pref,
     15    skip_unless_protocol,
     16    with_parameters,
     17 )
     18 from .testcases import (
     19    CommonTestCase,
     20    MarionetteTestCase,
     21    MetaParameterized,
     22    expectedFailure,
     23    unexpectedSuccess,
     24 )