mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
21 lines
540 B
Python
21 lines
540 B
Python
|
#!/usr/bin/env python3
|
||
|
import unittest
|
||
|
|
||
|
from .GuiShareTest import GuiShareTest
|
||
|
|
||
|
class Local404RateLimitTest(unittest.TestCase, GuiShareTest):
|
||
|
@classmethod
|
||
|
def setUpClass(cls):
|
||
|
test_settings = {
|
||
|
"close_after_first_download": False
|
||
|
}
|
||
|
cls.gui = GuiShareTest.set_up(test_settings, 'Local404RateLimitTest')
|
||
|
|
||
|
def test_gui(self):
|
||
|
self.run_all_common_setup_tests()
|
||
|
self.run_all_share_mode_tests(False, True)
|
||
|
self.hit_404(False)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
unittest.main()
|