2013-11-15 23:13:16 +00:00
|
|
|
# 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.
|
|
|
|
|
2013-10-04 12:28:24 -03:00
|
|
|
import os
|
2014-11-10 13:07:55 +00:00
|
|
|
|
2013-10-04 12:28:24 -03:00
|
|
|
from jenkins_jobs.modules import general
|
2016-06-29 12:20:42 +01:00
|
|
|
from tests import base
|
2013-10-04 12:28:24 -03:00
|
|
|
|
|
|
|
|
2016-06-29 12:20:42 +01:00
|
|
|
class TestCaseModuleGeneral(base.BaseScenariosTestCase):
|
2013-10-04 12:28:24 -03:00
|
|
|
fixtures_path = os.path.join(os.path.dirname(__file__), 'fixtures')
|
2016-06-29 12:20:42 +01:00
|
|
|
scenarios = base.get_scenarios(fixtures_path)
|
2013-10-04 12:28:24 -03:00
|
|
|
klass = general.General
|