Esempio n. 1
0
def test_exception_from_status_where_status_is_ok():
    assert utils.exception_from_status('0') is None
Esempio n. 2
0
def test_exception_from_status_where_status_is_ok():
    assert utils.exception_from_status('0') is None
Esempio n. 3
0
def test_exception_from_status_where_status_is_bad():
    exception = utils.exception_from_status('302 Camera is not available')
    assert exception == exceptions.CameraNotAvailable
Esempio n. 4
0
def test_exception_from_status_where_status_is_bad():
    exception = utils.exception_from_status('302 Camera is not available')
    assert exception == exceptions.CameraNotAvailable