Skip to content
This repository has been archived by the owner on May 28, 2022. It is now read-only.

Commit

Permalink
Add non-functional test functions for click_add_talk, show_save_promp…
Browse files Browse the repository at this point in the history
…t, and click_talk
  • Loading branch information
benbuckley committed Oct 21, 2014
1 parent 068e66e commit 11ee607
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/freeseer/tests/frontend/talkeditor/test_talkeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,15 @@ def test_help_menu_about(self):
# Click "Close"
QtTest.QTest.mouseClick(self.talk_editor.aboutDialog.closeButton, Qt.Qt.LeftButton)
self.assertFalse(self.talk_editor.aboutDialog.isVisible())

def test_click_talk(self):
self.assertTrue(True)

def test_click_add_talk(self):
self.assertTrue(True)

def test_show_save_prompt(self):
self.assertTrue(True)

# The tests for my new functions will probably go somewhere here.
# Note to self: delete this comment later.

0 comments on commit 11ee607

Please sign in to comment.