blob: 57b394bae0e9e4b78cbba15184fb328ccef2f9ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import pytest
from gitlab import exceptions
def test_error_raises_from_http_error():
"""Methods decorated with @on_http_error should raise from GitlabHttpError."""
class TestError(Exception):
pass
@exceptions.on_http_error(TestError)
def raise_error_from_http_error():
raise exceptions.GitlabHttpError
with pytest.raises(TestError) as context:
raise_error_from_http_error()
assert isinstance(context.value.__cause__, exceptions.GitlabHttpError)
|