Example #1
0
def client():
    my_app = create_app({
        'TESTING':True,                          # Set to True during testing
        'TEST_DATA_PATH':TEST_DATA_PATH,         # Path for loading test data into the repository
        'WTF_CSRF_ENABLED':False                 # test_client will not send a CSRF token, so disable validation
    })
    return my_app.test_client()
def client():
    test_app = create_app({
        'TESTING': True,
        'TEST_DATA_PATH': TEST_DATA_PATH,
        'WTF_CSRF_ENABLED': False
    })
    return test_app.test_client()
Example #3
0
def client():
    test_app = create_app({
        'TESTING': True,
        'TEST_DATA_PATH': TEST_DATA_PATH,
        'WTF_CSRF_ENABLED': False,
        'REPOSITORY': 'memory'
    })
    return test_app.test_client()
Example #4
0
def client():
    my_app = create_app({
        'TESTING': True,  # Set to True during testing.
        'REPOSITORY':
        'memory',  # Set to 'memory' or 'database' depending on desired repository.
        'TEST_DATA_PATH':
        TEST_DATA_PATH_MEMORY,  # Path for loading test data into the repository.
        'WTF_CSRF_ENABLED':
        False  # test_client will not send a CSRF token, so disable validation.
    })

    return my_app.test_client()
Example #5
0
"""App entry point."""
from CS235Flix import create_app

app = create_app()

if __name__ == "__main__":
    app.run(host='localhost', port=5000, threaded=False)