Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update test_debugger_r.py
  • Loading branch information
terryjreedy authored Jun 22, 2022
commit 4bbc8466e706da27a3a054942c50d275b9eabfc1
23 changes: 14 additions & 9 deletions Lib/idlelib/idle_test/test_debugger_r.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,20 @@
from idlelib import debugger_r
import unittest


class Test(unittest.TestCase):

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


# Classes GUIProxy, IdbAdapter, FrameProxy, CodeProxy, DictProxy,
# GUIAdapter, IdbProxy plus 7 module functions.
# Boilerplate likely to be needed for future test classes.
##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()

# GUIProxy, IdbAdapter, FrameProxy, CodeProxy, DictProxy,
# GUIAdapter, IdbProxy, and 7 functions still need tests.

class IdbAdapterTest(unittest.TestCase):

Expand Down