| Total Complexity | 3 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| 1 | import sys |
||
| 11 | class reSTLintBearTest(LocalBearTestHelper): |
||
| 12 | def setUp(self): |
||
| 13 | self.uut = reSTLintBear(Section('name'), Queue()) |
||
| 14 | |||
| 15 | def test_valid(self): |
||
| 16 | self.assertLinesValid(self.uut, ["test\n====\n"]) |
||
| 17 | |||
| 18 | def test_invalid(self): |
||
| 19 | self.assertLinesInvalid(self.uut, ["test\n==\n"]) |
||
| 20 | |||
| 24 |