28 lines
854 B
Python
28 lines
854 B
Python
|
from plone.app.discussion.testing import PLONE_APP_DISCUSSION_ROBOT_TESTING
|
||
|
from plone.app.testing import ROBOT_TEST_LEVEL
|
||
|
from plone.testing import layered
|
||
|
import os
|
||
|
import unittest
|
||
|
import robotsuite
|
||
|
|
||
|
|
||
|
def test_suite():
|
||
|
suite = unittest.TestSuite()
|
||
|
current_dir = os.path.abspath(os.path.dirname(__file__))
|
||
|
robot_dir = os.path.join(current_dir, 'robot')
|
||
|
robot_tests = [
|
||
|
os.path.join('robot', doc) for doc in
|
||
|
os.listdir(robot_dir) if doc.endswith('.robot') and
|
||
|
doc.startswith('test_')
|
||
|
]
|
||
|
for robot_test in robot_tests:
|
||
|
robottestsuite = robotsuite.RobotTestSuite(robot_test)
|
||
|
robottestsuite.level = ROBOT_TEST_LEVEL
|
||
|
suite.addTests([
|
||
|
layered(
|
||
|
robottestsuite,
|
||
|
layer=PLONE_APP_DISCUSSION_ROBOT_TESTING
|
||
|
),
|
||
|
])
|
||
|
return suite
|