Beispiel #1
0
def test_renew_auth_token():
    mill = Mill()
    mill.login()

    mill.auth['token'] = 'invalid'
    MSG = 'This is a test.'
    ret = mill.local('*', 'test.echo', MSG)
    assert len(ret['return'][0]) > 0
Beispiel #2
0
def test_login():
    mill = Mill()
    mill.login()
Beispiel #3
0
def test_local_poll():
    mill = Mill()
    mill.login()
    MSG = 'This is a test.'
    ret = mill.local_poll('*', 'test.echo', MSG)
    assert len(ret['return'][0]) > 0