From 74521d77a69b29c96eb70a1c0a736da6e4e34232 Mon Sep 17 00:00:00 2001 From: Madhuri Kumari Date: Wed, 13 Sep 2017 15:47:47 +0530 Subject: [PATCH] OSC: Remove unused files Change-Id: I906b13afed6c1e7d9651b4fbd92f9d3dfa56dcda Partial-Implements: blueprint deprecate-magnum-client Partial-Implements: blueprint openstackclient-support --- magnumclient/tests/osc/v1/__init__.py | 0 magnumclient/tests/osc/v1/fakes.py | 27 --------------------------- 2 files changed, 27 deletions(-) delete mode 100644 magnumclient/tests/osc/v1/__init__.py delete mode 100644 magnumclient/tests/osc/v1/fakes.py diff --git a/magnumclient/tests/osc/v1/__init__.py b/magnumclient/tests/osc/v1/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/magnumclient/tests/osc/v1/fakes.py b/magnumclient/tests/osc/v1/fakes.py deleted file mode 100644 index 076a0dfb..00000000 --- a/magnumclient/tests/osc/v1/fakes.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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 argparse -import mock - -from openstackclient.tests import utils - - -class TestMagnumClientOSCV1(utils.TestCommand): - - def setUp(self): - super(TestMagnumClientOSCV1, self).setUp() - self.namespace = argparse.Namespace() - self.app.client_manager.session = mock.Mock() - self.app.client_manager.magnumclient = mock.Mock() - self.magnumclient = self.app.client_manager.magnumclient