From 5b6f0aa71c8f91a970eeb06eb8c636c8c69a569f Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 24 Apr 2016 23:50:18 +0300 Subject: Remove duplicated tests. There were duplicated methods with the same name and body. --- Lib/test/test_pyexpat.py | 6 ------ Tools/clinic/clinic_test.py | 10 ---------- 2 files changed, 16 deletions(-) diff --git a/Lib/test/test_pyexpat.py b/Lib/test/test_pyexpat.py index 550aebf..0b68bfa 100644 --- a/Lib/test/test_pyexpat.py +++ b/Lib/test/test_pyexpat.py @@ -42,12 +42,6 @@ class SetAttributeTest(unittest.TestCase): self.parser.specified_attributes = x self.assertIs(self.parser.specified_attributes, bool(x)) - def test_specified_attributes(self): - self.assertIs(self.parser.specified_attributes, False) - for x in 0, 1, 2, 0: - self.parser.specified_attributes = x - self.assertIs(self.parser.specified_attributes, bool(x)) - def test_invalid_attributes(self): with self.assertRaises(AttributeError): self.parser.returns_unicode = 1 diff --git a/Tools/clinic/clinic_test.py b/Tools/clinic/clinic_test.py index cd21000..ac0640c 100644 --- a/Tools/clinic/clinic_test.py +++ b/Tools/clinic/clinic_test.py @@ -3,7 +3,6 @@ # Licensed to the PSF under a contributor agreement. # -import builtins import clinic from clinic import DSLParser import collections @@ -747,15 +746,6 @@ Not at column 0! Nested docstring here, goeth. """.strip(), function.docstring) - def test_parser_regression_special_character_in_parameter_column_of_docstring_first_line(self): - function = self.parse_function(""" -module os -os.stat - path: str -This/used to break Clinic! -""") - self.assertEqual("stat($module, /, path)\n--\n\nThis/used to break Clinic!", function.docstring) - def test_directive(self): c = FakeClinic() parser = DSLParser(c) -- cgit v0.12