def client(): my_app = create_app({ 'TESTING': True, 'TEST_DATA_PATH': TEST_DATA_PATH, 'WTF_CSRF_ENABLED': False }) return my_app.test_client()
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(): 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()
"""App entry point.""" from movies import create_app app = create_app() if __name__ == "__main__": app.run(host='localhost', port=5000, threaded=False)