2018-06-15 19:20:55 -03:00
|
|
|
"Test debugger, coverage 19%"
|
2016-06-10 19:19:21 -03:00
|
|
|
|
|
|
|
from idlelib import debugger
|
2018-06-15 19:20:55 -03:00
|
|
|
import unittest
|
2016-06-10 19:19:21 -03:00
|
|
|
from test.support import requires
|
|
|
|
requires('gui')
|
|
|
|
from tkinter import Tk
|
|
|
|
|
|
|
|
|
|
|
|
class NameSpaceTest(unittest.TestCase):
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
cls.root = Tk()
|
|
|
|
cls.root.withdraw()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
cls.root.destroy()
|
|
|
|
del cls.root
|
|
|
|
|
|
|
|
def test_init(self):
|
|
|
|
debugger.NamespaceViewer(self.root, 'Test')
|
|
|
|
|
|
|
|
|
2018-06-15 19:20:55 -03:00
|
|
|
# Other classes are Idb, Debugger, and StackViewer.
|
|
|
|
|
2016-06-10 19:19:21 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(verbosity=2)
|