mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
cancel share test in Tor
This commit is contained in:
parent
d77c12a6f8
commit
be7bc2d839
30
tests_gui/onionshare_share_mode_cancel_share_test.py
Normal file
30
tests_gui/onionshare_share_mode_cancel_share_test.py
Normal file
@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env python3
|
||||
import pytest
|
||||
import unittest
|
||||
|
||||
from .TorGuiShareTest import TorGuiShareTest
|
||||
|
||||
class ShareModeCancelTest(unittest.TestCase, TorGuiShareTest):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
test_settings = {
|
||||
}
|
||||
cls.gui = TorGuiShareTest.set_up(test_settings, 'ShareModeCancelTest')
|
||||
|
||||
@pytest.mark.run(order=1)
|
||||
@pytest.mark.tor
|
||||
def test_run_all_common_setup_tests(self):
|
||||
self.run_all_common_setup_tests()
|
||||
|
||||
@pytest.mark.run(order=2)
|
||||
@pytest.mark.tor
|
||||
def test_run_share_mode_setup_tests(self):
|
||||
self.run_all_share_mode_setup_tests()
|
||||
|
||||
@pytest.mark.run(order=3)
|
||||
@pytest.mark.tor
|
||||
def test_cancel_the_share(self):
|
||||
self.cancel_the_share(self.gui.share_mode)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
Loading…
Reference in New Issue
Block a user