getStatus returns both exportEnabled and isOpen booleans.
(api_client, clean_state, pro_only)
| 131 | |
| 132 | @pytest.mark.project |
| 133 | def test_status_shape(api_client, clean_state, pro_only): |
| 134 | """getStatus returns both exportEnabled and isOpen booleans.""" |
| 135 | status = _status(api_client) |
| 136 | assert isinstance(status["exportEnabled"], bool) |
| 137 | assert isinstance(status["isOpen"], bool) |
| 138 | |
| 139 | |
| 140 | # --------------------------------------------------------------------------- |