2019-09-09 16:35:05 +10:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import pytest
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from .GuiShareTest import GuiShareTest
|
|
|
|
|
2019-10-12 21:01:25 -07:00
|
|
|
|
2019-09-09 16:35:05 +10:00
|
|
|
class LocalShareModeClearAllButtonTest(unittest.TestCase, GuiShareTest):
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2019-10-12 21:01:25 -07:00
|
|
|
test_settings = {"close_after_first_download": False}
|
2019-09-09 16:35:05 +10:00
|
|
|
cls.gui = GuiShareTest.set_up(test_settings)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
GuiShareTest.tear_down()
|
|
|
|
|
|
|
|
@pytest.mark.gui
|
2019-10-12 21:01:25 -07:00
|
|
|
@pytest.mark.skipif(pytest.__version__ < "2.9", reason="requires newer pytest")
|
2019-09-09 16:35:05 +10:00
|
|
|
def test_gui(self):
|
|
|
|
self.run_all_common_setup_tests()
|
|
|
|
self.run_all_clear_all_button_tests(False, True)
|
|
|
|
|
2019-10-12 21:01:25 -07:00
|
|
|
|
2019-09-09 16:35:05 +10:00
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|