Adding an action increases actionCount.
(api_client, clean_state)
| 280 | |
| 281 | @pytest.mark.project |
| 282 | def test_add_action(api_client, clean_state): |
| 283 | """Adding an action increases actionCount.""" |
| 284 | before = _status(api_client).get("actionCount", 0) |
| 285 | api_client.add_action() |
| 286 | |
| 287 | assert _status(api_client).get("actionCount", 0) == before + 1 |
| 288 | |
| 289 | |
| 290 | @pytest.mark.project |
nothing calls this directly
no test coverage detected