Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
2cd33d90
Commit
2cd33d90
authored
Jun 28, 2017
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test/CodingStyle:: include erp5_administration's Check Python Code
parent
e13aa236
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
product/ERP5Type/tests/CodingStyleTestCase.py
product/ERP5Type/tests/CodingStyleTestCase.py
+14
-0
No files found.
product/ERP5Type/tests/CodingStyleTestCase.py
View file @
2cd33d90
...
...
@@ -92,3 +92,17 @@ class CodingStyleTestCase(ERP5TypeTestCase):
# Return results
if
len
(
message_list
):
raise
self
.
failureException
(
'
\
n
'
.
join
(
map
(
lambda
x
:
repr
(
x
),
message_list
)))
def
test_PythonSourceCode
(
self
):
"""test python script from the tested business templates.
reuses BusinessTemplate_getPythonSourceCodeMessageList from erp5_administration
"""
if
'erp5_administration'
not
in
self
.
getBusinessTemplateList
():
self
.
skipTest
(
'erp5_administration needs be installed to check python source code'
)
self
.
maxDiff
=
None
for
business_template
in
self
.
portal
.
portal_templates
.
contentValues
():
if
business_template
.
getTitle
()
in
self
.
getTestedBusinessTemplateList
():
self
.
assertEqual
([],
business_template
.
BusinessTemplate_getPythonSourceCodeMessageList
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment