tor-browser

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

__main__.py (350B)


      1 # Copyright (C) 2018 and later: Unicode, Inc. and others.
      2 # License & terms of use: http://www.unicode.org/copyright.html
      3 
      4 import unittest
      5 
      6 from . import filtration_test
      7 
      8 def load_tests(loader, tests, pattern):
      9    suite = unittest.TestSuite()
     10    suite.addTest(filtration_test.suite)
     11    return suite
     12 
     13 if __name__ == '__main__':
     14    unittest.main()