예제 #1
0
def test_ping_no_auth():
    fm_obj = FreshMail('any_key', 'any_secret')
    try:
        fm_obj.ping()
        assert False
    except FreshMailException:
        pass
예제 #2
0
def test_bad_method():
    fm_obj = FreshMail('any_key', 'any_secret')
    try:
        fm_obj.ping(method='PUT')
        assert False
    except FreshMailException:
        pass
예제 #3
0
def test_ping_no_auth():
    fm_obj = FreshMail('any_key', 'any_secret')
    try:
        res = fm_obj.ping()
        assert False
    except FreshMailException:
        pass
예제 #4
0
def test_bad_method():
    fm_obj = FreshMail('any_key', 'any_secret')
    try:
        fm_obj.ping(method='PUT')
        assert False
    except FreshMailException:
        pass
예제 #5
0
def test_init():
    fm_obj = FreshMail('any_key', 'any_secret')
    assert fm_obj.get_raw_response() == ''
    assert fm_obj.get_response() == ''
    assert fm_obj.get_errors() is None
    assert fm_obj.get_http_code() == 200
예제 #6
0
def test_init():
    fm_obj = FreshMail('any_key', 'any_secret')
    assert fm_obj.get_raw_response() == ''
    assert fm_obj.get_response() == ''
    assert fm_obj.get_errors() is None
    assert fm_obj.get_http_code() == 200