(self)
| 77 | self.Def(self).create(self) |
| 78 | |
| 79 | def test_include_if(self): |
| 80 | x = self.Def(self) |
| 81 | x.enabled = True |
| 82 | assert x.include_if(self) |
| 83 | |
| 84 | x.enabled = False |
| 85 | assert not x.include_if(self) |
| 86 | |
| 87 | def test_instantiate(self): |
| 88 | assert isinstance( |
nothing calls this directly
no test coverage detected