We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8fc36a commit 8be7ca6Copy full SHA for 8be7ca6
1 file changed
testsuite/test_all.py
@@ -9,8 +9,12 @@
9
10
ROOT_DIR = os.path.dirname(os.path.dirname(__file__))
11
12
+# Note: please only use a subset of unittest methods which were present
13
+# in Python 2.5: assert(True|False|Equal|NotEqual|Raises)
14
+
15
16
class Pep8TestCase(unittest.TestCase):
17
+ """Test the standard errors and warnings (E and W)."""
18
19
def setUp(self):
20
self._style = pep8.StyleGuide(
@@ -44,6 +48,7 @@ def test_own_dog_food(self):
44
48
45
49
46
50
class APITestCase(unittest.TestCase):
51
+ """Test the public methods."""
47
52
53
54
self._saved_checks = pep8._checks
0 commit comments