Trying to retrieve rules with an invalid key :return:
()
| 162 | |
| 163 | |
| 164 | def test_invalid_key(): |
| 165 | """ |
| 166 | Trying to retrieve rules with an invalid key |
| 167 | :return: |
| 168 | """ |
| 169 | v = ValhallaAPI(api_key=INVALID_KEY) |
| 170 | with pytest.raises(Exception): |
| 171 | v.get_rules_text() |
| 172 | |
| 173 | |
| 174 | def test_get_rule_info(): |
nothing calls this directly
no test coverage detected