source: products/qPingTool/branches/plone-3.1/tests/config.py

Last change on this file was 209, checked in by chervol, 18 years ago

version burst

File size: 1.4 KB
Line 
1# for testPropertiesToolConf
2nt_properties = (("metaTypesNotToList", "lines", ["PingTool", "PingInfo"]), )
3
4s_properties = (("use_folder_tabs", "lines", ["PingTool"]),
5                ("typesLinkToFolderContentsInFC", "lines", ["PingTool"]),
6                ("typesUseViewActionInListings", "lines", ["PingInfo"]),)
7
8# for test_skin_installed
9skins_content = ['tool.gif']
10
11# for test_installedAllTypes
12istalled_types = ['PingTool', 'PingInfo']
13
14# for test_added_action
15types_actions = ({'type':'PingTool',
16                  'actions':(('view', 'View', 'string:${object_url}/view', ('Manage portal', ), 'object', True),
17                             ('edit', 'Edit', 'string:${object_url}/edit', ('Modify portal content', ), 'object', True),
18                            ),
19                 },
20                 {'type':'PingInfo',
21                  'actions':(('view', 'View', 'string:${object_url}/view', ('View',), 'object', True),
22                             ('edit', 'Edit', 'string:${object_url}/edit', ('Modify portal content', ), 'object', True),
23                             ('metadata', 'Properties', 'string:${object_url}/properties', ('Modify portal content', ), 'object', True),
24                             ('references', 'References', 'string:${object_url}/reference_graph', ('Modify portal content', 'Review portal content'), 'object', True),
25                            ),
26                 },
27                )
Note: See TracBrowser for help on using the repository browser.