
This patch set centralizes all oslo configuration setting(s) into a single module and provides necessary entrypoints for the configuration to be generated via ``tox -e genconfig`` Story: #2001045 Task: #4619 Change-Id: I0473c7176f412d176be24deb588f7ef4c113848a Co-Authored-By: Tin Lam <tin@irrational.io>
31 lines
991 B
Python
31 lines
991 B
Python
#
|
|
# Copyright 2014-2017 AT&T Intellectual Property
|
|
#
|
|
# 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.
|
|
|
|
"""Test Config."""
|
|
|
|
from valet.tests.base import Base
|
|
|
|
|
|
class TestConfig(Base):
|
|
"""Unit tests for Valet.engine.optimizer.ostro_server.configuration."""
|
|
|
|
def setUp(self):
|
|
"""Setup Test Config Testing Class."""
|
|
super(TestConfig, self).setUp()
|
|
|
|
def test_unhappy_config_io(self):
|
|
"""Test unhappy.cfg I/O and validate I/O error in config status."""
|
|
pass
|