Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Products.DCWorkflow
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
Kirill Smelkov
Products.DCWorkflow
Commits
303c11d1
Commit
303c11d1
authored
Aug 03, 2010
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- removed broken run function and unittest.main calls
parent
3c63d0b0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
22 deletions
+1
-22
Products/DCWorkflow/tests/test_DCWorkflow.py
Products/DCWorkflow/tests/test_DCWorkflow.py
+0
-6
Products/DCWorkflow/tests/test_exportimport.py
Products/DCWorkflow/tests/test_exportimport.py
+1
-6
Products/DCWorkflow/tests/test_guard.py
Products/DCWorkflow/tests/test_guard.py
+0
-5
Products/DCWorkflow/tests/test_roles.py
Products/DCWorkflow/tests/test_roles.py
+0
-5
No files found.
Products/DCWorkflow/tests/test_DCWorkflow.py
View file @
303c11d1
...
...
@@ -11,8 +11,6 @@
#
##############################################################################
""" Unit tests for DCWorkflow module.
$Id$
"""
import
unittest
...
...
@@ -184,7 +182,3 @@ def test_suite():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
DCWorkflowDefinitionTests
),
))
if
__name__
==
'__main__'
:
from
Products.CMFCore.testing
import
run
run
(
test_suite
())
Products/DCWorkflow/tests/test_exportimport.py
View file @
303c11d1
...
...
@@ -11,8 +11,6 @@
#
##############################################################################
"""DCWorkflow export / import unit tests.
$Id$
"""
import
unittest
...
...
@@ -2549,13 +2547,10 @@ class Test_importWorkflow(_WorkflowSetup, _GuardChecker):
self
.
assertEqual
(
scripts
[
'doc'
].
meta_type
,
'DTML Document'
)
self
.
assertEqual
(
scripts
[
'bar'
].
meta_type
,
'Script (Python)'
)
def
test_suite
():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
WorkflowDefinitionConfiguratorTests
),
unittest
.
makeSuite
(
Test_exportWorkflow
),
unittest
.
makeSuite
(
Test_importWorkflow
),
))
if
__name__
==
'__main__'
:
from
Products.CMFCore.testing
import
run
run
(
test_suite
())
Products/DCWorkflow/tests/test_guard.py
View file @
303c11d1
...
...
@@ -11,8 +11,6 @@
#
##############################################################################
""" Guard tests.
$Id$
"""
import
unittest
...
...
@@ -265,6 +263,3 @@ def test_suite():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
TestGuard
),
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
Products/DCWorkflow/tests/test_roles.py
View file @
303c11d1
...
...
@@ -11,8 +11,6 @@
#
##############################################################################
""" Unit tests of role-mapping machinery.
$Id$
"""
import
unittest
...
...
@@ -67,6 +65,3 @@ def test_suite():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
RoleMapTests
),
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
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