onionshare/tests_gui_local/onionshare_share_mode_timer_test.py

26 lines
679 B
Python
Raw Normal View History

#!/usr/bin/env python3
import pytest
import unittest
from .GuiShareTest import GuiShareTest
class ShareModeTimerTest(unittest.TestCase, GuiShareTest):
@classmethod
def setUpClass(cls):
test_settings = {
"public_mode": False,
"shutdown_timeout": True,
}
cls.gui = GuiShareTest.set_up(test_settings, 'ShareModeTimerTest')
@pytest.mark.run(order=1)
def test_run_all_common_setup_tests(self):
self.run_all_common_setup_tests()
@pytest.mark.run(order=2)
def test_run_all_share_mode_timer_tests(self):
self.run_all_share_mode_timer_tests(False)
if __name__ == "__main__":
unittest.main()