mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #20792: Expand idle_test.test_pathbowser. Tweak file to not copy twice.
Original patch by Saimadhav Heblikar.
This commit is contained in:
parent
c0b1e0f868
commit
19c1a8725c
2 changed files with 22 additions and 5 deletions
|
@ -1,5 +1,8 @@
|
|||
import unittest
|
||||
import idlelib.PathBrowser as PathBrowser
|
||||
import os
|
||||
import sys
|
||||
import idlelib
|
||||
from idlelib import PathBrowser
|
||||
|
||||
class PathBrowserTest(unittest.TestCase):
|
||||
|
||||
|
@ -7,6 +10,18 @@ class PathBrowserTest(unittest.TestCase):
|
|||
# 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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue