
Split existing tests into separate files and classes to make it easier to select a subset to be executed when making modifications. Add some simple consolidations of test data as example improvements that can be extended by consolidating complete tests or sets of tests. Change-Id: If2380e6f4e848ba68f05868e2ef4186d7912952b
11 lines
227 B
Python
11 lines
227 B
Python
from tests.base import JenkinsTestBase
|
|
|
|
|
|
class JenkinsJobsTestBase(JenkinsTestBase):
|
|
|
|
config_xml = """
|
|
<matrix-project>
|
|
<actions/>
|
|
<description>Foo</description>
|
|
</matrix-project>"""
|