(self)
| 45 | class Test(TestCase): |
| 46 | |
| 47 | def test_find_source_lines(self): |
| 48 | self.assertEqual(oinspect.find_source_lines(Test.test_find_source_lines), |
| 49 | THIS_LINE_NUMBER+6) |
| 50 | |
| 51 | |
| 52 | # A couple of utilities to ensure these tests work the same from a source or a |
nothing calls this directly
no outgoing calls
no test coverage detected