예제 #1
0
def test_remote_status(http_app):
    client = RasaCoreClient(http_app, None)

    status = client.status()

    assert status.get("version") == rasa_core.__version__
예제 #2
0
파일: test_server.py 프로젝트: mann2107/NLP
def test_remote_status(http_app):
    client = RasaCoreClient(EndpointConfig(http_app))

    status = client.status()

    assert status.get("version") == rasa_core.__version__
예제 #3
0
def test_remote_status(http_app):
    client = RasaCoreClient(EndpointConfig(http_app))

    status = client.status()

    assert status.get("version") == rasa_core.__version__