Test the history indicator widget, in local GUI tests

This commit is contained in:
Micah Lee 2018-09-30 11:41:07 -07:00
parent f5c7acf8f2
commit 3fd7581995
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
7 changed files with 89 additions and 4 deletions

View file

@ -168,6 +168,12 @@ class OnionShareGuiTest(unittest.TestCase):
CommonTests.test_server_is_stopped(self, 'share', True)
CommonTests.test_web_service_is_stopped(self)
@pytest.mark.run(order=23)
def test_history_indicator(self):
CommonTests.test_server_working_on_start_button_pressed(self, 'share')
CommonTests.test_a_server_is_started(self, 'share')
CommonTests.test_history_indicator(self, 'share', False)
if __name__ == "__main__":
unittest.main()