summaryrefslogtreecommitdiff
path: root/tests/unit/fake/__init__.py
diff options
context:
space:
mode:
authorDavanum Srinivas <davanum@gmail.com>2015-11-14 20:29:45 -0500
committerDavanum Srinivas (dims) <davanum@gmail.com>2015-11-25 13:44:49 +0000
commit90ae25e38915cc502d9e9c52d59e8fb668a72ae1 (patch)
tree696f75e25d6fa6091c4eb2fc27a03f261cb24884 /tests/unit/fake/__init__.py
parentfb99fe87629dcea11e70a6d33d4e71e971fffd54 (diff)
downloadoslo-incubator-90ae25e38915cc502d9e9c52d59e8fb668a72ae1.tar.gz
Cleaning up code in oslo-incubator
* Filed reviews with all consuming projects with the last changes from oslo-incubator * We've switched off all CI tests for oslo-incubator * Notified folks on openstack-dev Let's wrap it up! Thanks to everyone who have contributed to moving things out of oslo-incubator into libraries Change-Id: Ibc5a8f11c6e5c308cec15a60eeb07a898254f9b7
Diffstat (limited to 'tests/unit/fake/__init__.py')
-rw-r--r--tests/unit/fake/__init__.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/unit/fake/__init__.py b/tests/unit/fake/__init__.py
deleted file mode 100644
index d04431e3..00000000
--- a/tests/unit/fake/__init__.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 2012 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.
-
-
-class FakeDriver(object):
- def __init__(self, first_arg=True):
- self.first_arg = first_arg
-
-
-class FakeDriver2(object):
- def __init__(self, first_arg):
- self.first_arg = first_arg