We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0734d45 commit 73acf7fCopy full SHA for 73acf7f
tests.py
@@ -356,6 +356,9 @@ def test_root_list(self):
356
res = patch.apply(src)
357
self.assertEqual(res, dst)
358
359
+
360
+class ListTests(unittest.TestCase):
361
362
def test_fail_prone_list_1(self):
363
""" Test making and applying a patch of the root is a list """
364
src = ['a', 'r', 'b']
@@ -453,6 +456,7 @@ def get_suite():
453
456
suite.addTest(unittest.makeSuite(ApplyPatchTestCase))
454
457
suite.addTest(unittest.makeSuite(EqualityTestCase))
455
458
suite.addTest(unittest.makeSuite(MakePatchTestCase))
459
+ suite.addTest(unittest.makeSuite(ListTests))
460
suite.addTest(unittest.makeSuite(InvalidInputTests))
461
suite.addTest(unittest.makeSuite(ConflictTests))
462
return suite
0 commit comments