From a8166d2e29da04c5eb04f92f84d697cc3203af8f Mon Sep 17 00:00:00 2001 From: Yulia Portnova Date: Thu, 28 Nov 2013 22:26:04 +0200 Subject: [PATCH] Moved netapp.py from drivers to drivers/netapp. Change-Id: Icfc1479476860e0155c43796a6f2e0d630b2d9b8 --- manila/share/drivers/netapp/__init__.py | 15 +++++++++++++++ .../share/drivers/{netapp.py => netapp/driver.py} | 0 manila/tests/test_share_netapp.py | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 manila/share/drivers/netapp/__init__.py rename manila/share/drivers/{netapp.py => netapp/driver.py} (100%) diff --git a/manila/share/drivers/netapp/__init__.py b/manila/share/drivers/netapp/__init__.py new file mode 100644 index 0000000000..4ab071d281 --- /dev/null +++ b/manila/share/drivers/netapp/__init__.py @@ -0,0 +1,15 @@ +# vim: tabstop=4 shiftwidth=4 softtabstop=4 +# Copyright 2013 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. diff --git a/manila/share/drivers/netapp.py b/manila/share/drivers/netapp/driver.py similarity index 100% rename from manila/share/drivers/netapp.py rename to manila/share/drivers/netapp/driver.py diff --git a/manila/tests/test_share_netapp.py b/manila/tests/test_share_netapp.py index b1f175cf1d..5fb4e172a2 100644 --- a/manila/tests/test_share_netapp.py +++ b/manila/tests/test_share_netapp.py @@ -23,7 +23,7 @@ import suds from manila import context from manila import exception from manila.share.configuration import Configuration -from manila.share.drivers import netapp +from manila.share.drivers.netapp import driver as netapp from manila import test