diff --git a/tests/functional/test_wps_app.py b/tests/functional/test_wps_app.py index 92d047bb7..e681b8e5e 100644 --- a/tests/functional/test_wps_app.py +++ b/tests/functional/test_wps_app.py @@ -20,6 +20,7 @@ setup_config_with_celery, setup_config_with_mongodb, setup_config_with_pywps, + setup_mongodb_jobstore, setup_mongodb_processstore ) from weaver import xml_util @@ -45,6 +46,7 @@ def setUp(self): config = setup_config_with_pywps(config) config = setup_config_with_celery(config) self.process_store = setup_mongodb_processstore(config) + self.job_store = setup_mongodb_jobstore(config) self.app = get_test_weaver_app(config=config, settings=settings) # add processes by database Process type @@ -146,6 +148,24 @@ def test_execute_allowed_demo(self): resp.mustcontain(" Job """ Gets job for given ``job_id`` from `MongoDB` storage.