Commit 210cb8a7 authored by Vincent Pelletier's avatar Vincent Pelletier

Improve docstring.

Correct indentation.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6902 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b4046efc
......@@ -41,18 +41,18 @@ from Products.ERP5 import _dtmldir
from zLOG import LOG
class TestTool (BaseTool):
"""
holds tests
"""
id = 'portal_tests'
meta_type = 'ERP5 Test Tool'
portal_type = 'Test Tool'
allowed_types = ( 'ERP5 Portal Test',)
# Declarative Security
security = ClassSecurityInfo()
security.declareProtected( Permissions.ManagePortal, 'manage_overview' )
manage_overview = DTMLFile( 'explainRuleTool', _dtmldir )
"""
Container for fonctionnal tests.
"""
id = 'portal_tests'
meta_type = 'ERP5 Test Tool'
portal_type = 'Test Tool'
allowed_types = ( 'ERP5 Portal Test',)
# Declarative Security
security = ClassSecurityInfo()
security.declareProtected( Permissions.ManagePortal, 'manage_overview' )
manage_overview = DTMLFile( 'explainRuleTool', _dtmldir )
InitializeClass(TestTool)
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