def test_app_delete(): client = Client(app_key, app_secret, base_url) indexApp = IndexApp(client) ret = yield from indexApp.delete(index_name) client.session.close() assert ret['status'] == 'OK'
def test_delete(): client = Client(app_key, app_secret, base_url, lib=client_name) indexApp = IndexApp(client) ret = indexApp.delete(index_name) assert ret['status'] == 'OK'
def test_app_delete(): client = Client(app_key, app_secret, base_url, lib=client_name) indexApp = IndexApp(client) ret = indexApp.delete(index_name) assert ret['status'] == 'OK'