PATH:
opt
/
alt
/
python35
/
lib64
/
python3.5
/
idlelib
/
idle_test
'''Test idlelib.help_about. Coverage: ''' from idlelib import aboutDialog as help_about from idlelib import textView as textview from idlelib.idle_test.mock_idle import Func from idlelib.idle_test.mock_tk import Mbox import unittest About = help_about.AboutDialog class Dummy_about_dialog(): # Dummy class for testing file display functions. idle_credits = About.ShowIDLECredits idle_readme = About.ShowIDLEAbout idle_news = About.ShowIDLENEWS # Called by the above display_file_text = About.display_file_text class DisplayFileTest(unittest.TestCase): "Test that .txt files are found and properly decoded." dialog = Dummy_about_dialog() @classmethod def setUpClass(cls): cls.orig_mbox = textview.tkMessageBox cls.orig_view = textview.view_text cls.mbox = Mbox() cls.view = Func() textview.tkMessageBox = cls.mbox textview.view_text = cls.view cls.About = Dummy_about_dialog() @classmethod def tearDownClass(cls): textview.tkMessageBox = cls.orig_mbox textview.view_text = cls.orig_view def test_file_isplay(self): for handler in (self.dialog.idle_credits, self.dialog.idle_readme, self.dialog.idle_news): self.mbox.showerror.message = '' self.view.called = False handler() self.assertEqual(self.mbox.showerror.message, '') self.assertEqual(self.view.called, True) if __name__ == '__main__': unittest.main(verbosity=2)
[-] htest.py
[edit]
[-] test_editmenu.py
[edit]
[-] test_replacedialog.py
[edit]
[+]
__pycache__
[-] __init__.py
[edit]
[-] test_delegator.py
[edit]
[-] test_io.py
[edit]
[-] test_grep.py
[edit]
[-] test_searchengine.py
[edit]
[-] test_config_help.py
[edit]
[-] mock_idle.py
[edit]
[-] test_parenmatch.py
[edit]
[-] test_calltips.py
[edit]
[-] test_config_name.py
[edit]
[-] test_autoexpand.py
[edit]
[-] test_textview.py
[edit]
[-] test_rstrip.py
[edit]
[-] test_editor.py
[edit]
[-] test_text.py
[edit]
[-] test_autocomplete.py
[edit]
[-] test_configdialog.py
[edit]
[-] test_hyperparser.py
[edit]
[+]
..
[-] README.txt
[edit]
[-] test_widgetredir.py
[edit]
[-] test_idlehistory.py
[edit]
[-] test_undodelegator.py
[edit]
[-] test_warning.py
[edit]
[-] test_help_about.py
[edit]
[-] test_searchdialog.py
[edit]
[-] test_pathbrowser.py
[edit]
[-] test_formatparagraph.py
[edit]
[-] mock_tk.py
[edit]
[-] test_percolator.py
[edit]
[-] test_searchdialogbase.py
[edit]