tor-browser

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

__init__.py (771B)


      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__ = "5.0.2"
      6 
      7 from .marionette_test import (
      8    CommonTestCase,
      9    MarionetteTestCase,
     10    SkipTest,
     11    expectedFailure,
     12    parameterized,
     13    run_if_manage_instance,
     14    skip,
     15    skip_if_chrome,
     16    skip_if_desktop,
     17    skip_unless_browser_pref,
     18    skip_unless_protocol,
     19    unexpectedSuccess,
     20 )
     21 from .runner import (
     22    BaseMarionetteArguments,
     23    BaseMarionetteTestRunner,
     24    Marionette,
     25    MarionetteTest,
     26    MarionetteTestResult,
     27    MarionetteTextTestRunner,
     28    TestManifest,
     29    TestResult,
     30    TestResultCollection,
     31    WindowManagerMixin,
     32 )