tobiko/tobiko/tests/base.py
abregman 31a6360210 Add two tests for testing instance connectivity
One for pre upgrade (creating the stack and all the related
resources) and for post upgrade to verify it's still reachable.

Change-Id: Iffda72ac5e61ef96444faef443aefee2fde106e2
2018-08-15 10:30:37 +03:00

27 lines
937 B
Python

# Copyright (c) 2018 Red Hat
# All Rights Reserved.
#
# 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.
from tempest import config
import testscenarios
import testtools
class TobikoTest(testtools.testcase.WithAttributes,
testscenarios.WithScenarios,
testtools.TestCase):
def setUp(self):
super(TobikoTest, self).setUp()
self.conf = config.CONF.tobiko_plugin