File tree 4 files changed +15
-1
lines changed
4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 49
49
python_requires = ">=3.6" ,
50
50
install_requires = [
51
51
"setuptools" ,
52
+ "collective.easyform" ,
52
53
"cusy.exportimport" ,
53
54
"cusy.restapi.easyform" ,
54
55
"cusy.restapi.info" ,
55
56
"cusy.restapi.patches" ,
57
+ "plone.restapi" ,
56
58
],
57
59
extras_require = {
58
60
"test" : [
Original file line number Diff line number Diff line change 6
6
7
7
<i18n : registerTranslations directory =" locales" />
8
8
9
+ <include package =" collective.easyform" />
9
10
<include package =" cusy.exportimport" />
10
11
<include package =" cusy.restapi.easyform" />
11
12
<include package =" cusy.restapi.info" />
12
13
<include package =" cusy.restapi.patches" />
14
+ <include package =" plone.restapi" />
13
15
14
16
<include file =" permissions.zcml" />
15
17
<include file =" profiles.zcml" />
Original file line number Diff line number Diff line change 2
2
<metadata >
3
3
<version >1000</version >
4
4
<dependencies >
5
+ <dependency >profile-collective.easyform:default</dependency >
5
6
<dependency >profile-cusy.exportimport:default</dependency >
6
7
<dependency >profile-cusy.restapi.easyform:default</dependency >
7
8
<dependency >profile-cusy.restapi.info:default</dependency >
8
9
<dependency >profile-cusy.restapi.patches:default</dependency >
10
+ <dependency >profile-plone.restapi:default</dependency >
9
11
</dependencies >
10
12
</metadata >
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ def test_browserlayer(self):
38
38
39
39
self .assertIn (ICusyCmsLayer , utils .registered_layers ())
40
40
41
+ def test_collective_easyform_installed (self ):
42
+ """Validate that `collective.easyform` is installed."""
43
+ self .assertTrue (self .installer .isProductInstalled ("collective.easyform" ))
44
+
41
45
def test_cusy_exportimport_installed (self ):
42
46
"""Validate that `cusy.exportimport` is installed."""
43
47
self .assertTrue (self .installer .isProductInstalled ("cusy.exportimport" ))
@@ -51,9 +55,13 @@ def test_cusy_restapi_info_installed(self):
51
55
self .assertTrue (self .installer .isProductInstalled ("cusy.restapi.info" ))
52
56
53
57
def test_cusy_restapi_patches_installed (self ):
54
- """Validate that `cusy.restapi.patches ` is installed."""
58
+ """Validate that `cusy.restapi` is installed."""
55
59
self .assertTrue (self .installer .isProductInstalled ("cusy.restapi.patches" ))
56
60
61
+ def test_plone_restapi_installed (self ):
62
+ """Validate that `plone.restapi` is installed."""
63
+ self .assertTrue (self .installer .isProductInstalled ("plone.restapi" ))
64
+
57
65
58
66
class TestUninstall (unittest .TestCase ):
59
67
You can’t perform that action at this time.
0 commit comments