PATH:
opt
/
alt
/
python35
/
lib64
/
python3.5
/
idlelib
/
idle_test
import unittest import os import sys import idlelib from idlelib import PathBrowser class PathBrowserTest(unittest.TestCase): def test_DirBrowserTreeItem(self): # Issue16226 - make sure that getting a sublist works d = PathBrowser.DirBrowserTreeItem('') d.GetSubList() self.assertEqual('', d.GetText()) dir = os.path.split(os.path.abspath(idlelib.__file__))[0] self.assertEqual(d.ispackagedir(dir), True) self.assertEqual(d.ispackagedir(dir + '/Icons'), False) def test_PathBrowserTreeItem(self): p = PathBrowser.PathBrowserTreeItem() self.assertEqual(p.GetText(), 'sys.path') sub = p.GetSubList() self.assertEqual(len(sub), len(sys.path)) self.assertEqual(type(sub[0]), PathBrowser.DirBrowserTreeItem) if __name__ == '__main__': unittest.main(verbosity=2, exit=False)
[-] 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]