summaryrefslogtreecommitdiff
path: root/addons/test_website_slides_full/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/test_website_slides_full/__manifest__.py')
-rw-r--r--addons/test_website_slides_full/__manifest__.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/addons/test_website_slides_full/__manifest__.py b/addons/test_website_slides_full/__manifest__.py
new file mode 100644
index 00000000..e59c86fd
--- /dev/null
+++ b/addons/test_website_slides_full/__manifest__.py
@@ -0,0 +1,27 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Test Full eLearning Flow',
+ 'version': '1.0',
+ 'category': 'Hidden/Tests',
+ 'description': """
+This module will test the main certification flow of Odoo.
+It will install the e-learning, survey and e-commerce apps and make a complete
+certification flow including purchase, certification, failure and success.
+""",
+ 'depends': [
+ 'website_sale_product_configurator',
+ 'website_sale_slides',
+ 'website_slides_forum',
+ 'website_slides_survey',
+ 'payment_test'
+ ],
+ 'demo': [
+ 'data/product_demo.xml',
+ ],
+ 'data': [
+ 'views/assets.xml',
+ ],
+ 'installable': True,
+ 'license': 'LGPL-3',
+}