()
| 171 | |
| 172 | @staticmethod |
| 173 | def _create_instance(): |
| 174 | instance = PolicyDB( |
| 175 | pack=None, |
| 176 | name="local.concurrency", |
| 177 | description="TBD", |
| 178 | enabled=None, |
| 179 | ref=None, |
| 180 | resource_ref="core.local", |
| 181 | policy_type="action.concurrency", |
| 182 | parameters={"threshold": 25}, |
| 183 | ) |
| 184 | |
| 185 | return instance |
| 186 | |
| 187 | def test_crud(self): |
| 188 | instance = self._create_instance() |
no test coverage detected