summaryrefslogtreecommitdiff
path: root/tests/local_onionshare_share_mode_clear_all_button_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/local_onionshare_share_mode_clear_all_button_test.py')
-rw-r--r--tests/local_onionshare_share_mode_clear_all_button_test.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/local_onionshare_share_mode_clear_all_button_test.py b/tests/local_onionshare_share_mode_clear_all_button_test.py
new file mode 100644
index 00000000..1c11fe81
--- /dev/null
+++ b/tests/local_onionshare_share_mode_clear_all_button_test.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python3
+import pytest
+import unittest
+
+from .GuiShareTest import GuiShareTest
+
+
+class LocalShareModeClearAllButtonTest(unittest.TestCase, GuiShareTest):
+ @classmethod
+ def setUpClass(cls):
+ test_settings = {"close_after_first_download": False}
+ cls.gui = GuiShareTest.set_up(test_settings)
+
+ @classmethod
+ def tearDownClass(cls):
+ GuiShareTest.tear_down()
+
+ @pytest.mark.gui
+ @pytest.mark.skipif(pytest.__version__ < "2.9", reason="requires newer pytest")
+ def test_gui(self):
+ self.run_all_common_setup_tests()
+ self.run_all_clear_all_button_tests(False, True)
+
+
+if __name__ == "__main__":
+ unittest.main()