Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c1004b85464579771db3b50f5b150449275bbbd0 authored by Ɓukasz Langa on 06 May 2019, 18:30:25 UTC
Python 3.8.0a4
Tip revision: c1004b8
test_debugger_r.py
"Test debugger_r, coverage 30%."

from idlelib import debugger_r
import unittest
from test.support import requires
from tkinter import Tk


class Test(unittest.TestCase):

##    @classmethod
##    def setUpClass(cls):
##        requires('gui')
##        cls.root = Tk()
##
##    @classmethod
##    def tearDownClass(cls):
##        cls.root.destroy()
##        del cls.root

    def test_init(self):
        self.assertTrue(True)  # Get coverage of import


# Classes GUIProxy, IdbAdapter, FrameProxy, CodeProxy, DictProxy,
# GUIAdapter, IdbProxy plus 7 module functions.

if __name__ == '__main__':
    unittest.main(verbosity=2)
back to top