
A long time ago, quantum/tests/unit became the home for all unit tests, but these ones in the Cisco plugin directory got left behind. They have suffered bit-rot and need to be removed. Also: - Move the fake Nexus driver to new home. - Filed new bugs to track the task of improving unit test coverage of Cisco plugin code. Fixes: bug #1174311 Change-Id: I372e24aebbe1804e5b6ce62984bfd76b030a44b1
20 lines
740 B
Python
20 lines
740 B
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 OpenStack Foundation.
|
|
# 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.
|
|
|
|
import __builtin__
|
|
setattr(__builtin__, '_', lambda x: x)
|