mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
27 lines
674 B
Python
27 lines
674 B
Python
#!/usr/bin/env python3
|
|
import pytest
|
|
import unittest
|
|
|
|
from .GuiReceiveTest import GuiReceiveTest
|
|
|
|
|
|
class LocalReceiveModeTest(unittest.TestCase, GuiReceiveTest):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
test_settings = {"receive_allow_receiver_shutdown": True}
|
|
cls.gui = GuiReceiveTest.set_up(test_settings)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
GuiReceiveTest.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_receive_mode_tests(False)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|