Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
1 change: 1 addition & 0 deletions Lib/idlelib/idle_test/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def tearDownClass(cls):
cls.root.destroy()
del cls.root

@unittest.skip('Dummy test')
def test_init(self):
self.assertTrue(True)

Expand Down
4 changes: 2 additions & 2 deletions Lib/idlelib/idle_test/test_autocomplete.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ def test_fetch_completions(self):
# Test attributes
s, b = acp.fetch_completions('', ac.ATTRS)
Comment thread
terryjreedy marked this conversation as resolved.
Outdated
self.assertLess(len(small), len(large))
self.assertTrue(all(filter(lambda x: x.startswith('_'), s)))
self.assertTrue(any(filter(lambda x: x.startswith('_'), b)))
self.assertFalse(any(x[0] == '_' for x in s))
self.assertTrue(any(x[0] == '_' for x in b))

# Test smalll should respect to __all__.
with patch.dict('__main__.__dict__', {'__all__': ['a', 'b']}):
Expand Down
1 change: 1 addition & 0 deletions Lib/idlelib/idle_test/test_configdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def tearDownModule():
root = dialog = None


@unittest.skip('Empty tests')
class ConfigDialogTest(unittest.TestCase):

def test_deactivate_current_config(self):
Expand Down
1 change: 1 addition & 0 deletions Lib/idlelib/idle_test/test_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ def test_searcher(self):
self.assertEqual(actual_pair, expected_pair)


@unittest.skip('Empty test')
class RMenuTest(unittest.TestCase):

@classmethod
Expand Down
Loading