remove obsolete default test

Change-Id: Ibf0c07247a1b90b9a6f8a074aea9ff44b0a7c9fc
This commit is contained in:
Andreas Scheuring 2017-01-17 15:02:55 +01:00
parent 345b2cd601
commit 1b7ffe979f
3 changed files with 2 additions and 53 deletions

View File

@ -1,23 +0,0 @@
# -*- coding: utf-8 -*-
# Copyright 2016 OpenStack Foundation
# Copyright 2016 IBM Corp.
#
# 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 oslotest import base
class TestCase(base.BaseTestCase):
"""Test case base class for all unit tests."""

View File

@ -1,28 +0,0 @@
# -*- coding: utf-8 -*-
# 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_os_dpm
----------------------------------
Tests for `os_dpm` module.
"""
from os_dpm.tests import base
class TestNetworking_dpm(base.TestCase):
def test_something(self):
pass

View File

@ -15,12 +15,12 @@
from oslo_config import cfg
from oslo_config.fixture import Config
from oslotest import base
from os_dpm.config import config
from os_dpm.tests import base
class TestNetworkingDpm(base.TestCase):
class TestNetworkingDpm(base.BaseTestCase):
def test_register_opts(self):
conf = Config()