(self)
| 185 | return instance |
| 186 | |
| 187 | def test_crud(self): |
| 188 | instance = self._create_instance() |
| 189 | |
| 190 | defaults = { |
| 191 | "pack": pack_constants.DEFAULT_PACK_NAME, |
| 192 | "ref": "%s.local.concurrency" % pack_constants.DEFAULT_PACK_NAME, |
| 193 | "enabled": True, |
| 194 | } |
| 195 | |
| 196 | updates = { |
| 197 | "description": 'Limits the concurrent executions for the action "core.local".' |
| 198 | } |
| 199 | |
| 200 | self._assert_crud(instance, defaults=defaults, updates=updates) |
| 201 | |
| 202 | def test_ref(self): |
| 203 | instance = self._create_instance() |
nothing calls this directly
no test coverage detected