예제 #1
0
파일: test_api.py 프로젝트: tobgu/qcache
 def get_app(self):
     return app.make_app(url_prefix="", debug=True, basic_auth="foo:bar")
예제 #2
0
파일: test_api.py 프로젝트: tobgu/qcache
 def get_app(self):
     return app.make_app(url_prefix="", debug=True)
예제 #3
0
파일: test_api.py 프로젝트: tobgu/qcache
 def get_app(self):
     return app.make_app(url_prefix="", debug=True, default_filter_engine="pandas")
예제 #4
0
파일: test_api.py 프로젝트: tobgu/qcache
 def get_app(self):
     # A cache size of 200 is trimmed for the below test cases
     return app.make_app(url_prefix="", max_age=5, debug=True)
예제 #5
0
파일: test_api.py 프로젝트: tobgu/qcache
 def get_app(self):
     # A cache size of 200 is trimmed for the below test cases
     just_enough_to_fit_smaller_values = 315
     return app.make_app(url_prefix="", max_cache_size=just_enough_to_fit_smaller_values, debug=True)