Commit 8d1113e9 authored by Ivan Tyagov's avatar Ivan Tyagov

Ebulk uses default Ingestion Policy and Data Supply at Wendelin side thus make sure they exist.

parent 29b19e76
......@@ -276,8 +276,14 @@ class Test(ERP5TypeTestCase):
"""
Test that nobody accidently removes needed by HowTo's default configurations.
"""
# the default json ingestion is usde in HowTo/ Docs
# the default json ingestion is usde in HowTo / Docs
self.assertNotEqual(None,
getattr(self.portal.portal_ingestion_policies, "default_http_json", None))
self.assertNotEqual(None,
getattr(self.portal.data_supply_module, "default_http_json", None))
# test default ebuk ingestion exists
self.assertNotEqual(None,
getattr(self.portal.portal_ingestion_policies, "wendelin_embulk", None))
self.assertNotEqual(None,
getattr(self.portal.data_supply_module, "embulk", None))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment