(self, config)
| 70 | |
| 71 | class TestFileCL(TestCase): |
| 72 | def _check_conf(self, config): |
| 73 | self.assertEqual(config.a, 10) |
| 74 | self.assertEqual(config.b, 20) |
| 75 | self.assertEqual(config.Foo.Bar.value, 10) |
| 76 | self.assertEqual(config.Foo.Bam.value, list(range(10))) |
| 77 | self.assertEqual(config.D.C.value, "hi there") |
| 78 | |
| 79 | def test_python(self): |
| 80 | fd, fname = mkstemp(".py", prefix="μnïcø∂e") |
no outgoing calls
no test coverage detected