mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-27 16:29:41 -05:00
24 lines
671 B
Python
24 lines
671 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, 'LocalReceiveModeTest')
|
|
|
|
def test_run_all_common_setup_tests(self):
|
|
self.run_all_common_setup_tests()
|
|
|
|
@pytest.mark.run(after='test_run_all_common_setup_tests')
|
|
def test_run_all_receive_mode_tests(self):
|
|
self.run_all_receive_mode_tests(False, True)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|