summaryrefslogtreecommitdiff
path: root/tests/storage.py
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2014-02-12 10:39:50 +0100
committerGiuseppe Scrivano <gscrivan@redhat.com>2014-02-12 15:46:25 +0100
commit7a1ffff92709860df36534eb6bb12fa64e9934c9 (patch)
tree696ead598ac1ee729770d8c7d23a6dbfc6e3cd22 /tests/storage.py
parenta2706e9258d11fcf34373d4b6a9c480661ae7897 (diff)
downloadvirt-manager-7a1ffff92709860df36534eb6bb12fa64e9934c9.tar.gz
storage: add support for gluster fs pools.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'tests/storage.py')
-rw-r--r--tests/storage.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/storage.py b/tests/storage.py
index 7363a2cc..547bd8b7 100644
--- a/tests/storage.py
+++ b/tests/storage.py
@@ -214,6 +214,9 @@ class TestStorage(unittest.TestCase):
def testMpathPool(self):
createPool(self.conn, StoragePool.TYPE_MPATH, "pool-mpath")
+ def testGlusterPool(self):
+ createPool(self.conn, StoragePool.TYPE_GLUSTER, "pool-gluster")
+
def _enumerateCompare(self, name, pool_list):
for pool in pool_list:
pool.name = name + str(pool_list.index(pool))