34ea32ba80
This patch fixes problem with generating MultiSCM in case that scms are encapsulated in macro. This patch includes simple tests to cover if-branches for this change. Example: - scm: name: xxx scm: - git: ... - scm: name: yyy scm: - git: ... - scm: name: xxx-and-yyy scm: - xxx - yyy - job: name: my-job scm: - xxx-and-yyy Change-Id: If3e7b3d19e51545a5623ee060fb7673a7a989233 Signed-off-by: Lukas Bednar <lbednar@redhat.com> Closes-bug: #1285515
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
# Joint copyright:
|
|
# - Copyright 2012,2013 Wikimedia Foundation
|
|
# - Copyright 2012,2013 Antoine "hashar" Musso
|
|
# - Copyright 2013 Arnaud Fabre
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import os
|
|
from testtools import TestCase
|
|
from testscenarios.testcase import TestWithScenarios
|
|
from tests.base import get_scenarios, SingleJobTestCase
|
|
|
|
|
|
class TestCaseModuleYamlInclude(TestWithScenarios, TestCase,
|
|
SingleJobTestCase):
|
|
fixtures_path = os.path.join(os.path.dirname(__file__), 'fixtures')
|
|
scenarios = get_scenarios(fixtures_path)
|