mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
27 lines
735 B
Python
27 lines
735 B
Python
#!/usr/bin/env python3
|
|
import pytest
|
|
import unittest
|
|
|
|
from .TorGuiShareTest import TorGuiShareTest
|
|
|
|
class ShareModeTimerTest(unittest.TestCase, TorGuiShareTest):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
test_settings = {
|
|
"public_mode": False,
|
|
"shutdown_timeout": True,
|
|
}
|
|
cls.gui = TorGuiShareTest.set_up(test_settings, 'ShareModeTimerTest')
|
|
|
|
@pytest.mark.tor
|
|
def test_run_all_common_setup_tests(self):
|
|
self.run_all_common_setup_tests()
|
|
|
|
@pytest.mark.run(after='test_run_all_common_setup_tests')
|
|
@pytest.mark.tor
|
|
def test_run_all_share_mode_timer_tests(self):
|
|
self.run_all_share_mode_timer_tests(False)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|