Displaying 1 result from an estimated 1 matches for "f159f77".
Did you mean:
15977
2016 Feb 22
3
[PATCH 1/3] python: tests: refactor to use unittest's discovery
...;, "-Z", self.filename])
+ print ("disk label = %s" % after)
+
+ self.assertEqual (before, after)
+
+ def tearDown (self):
+ os.unlink (self.filename)
diff --git a/python/t/test910Libvirt.py b/python/t/test910Libvirt.py
new file mode 100644
index 0000000..f159f77
--- /dev/null
+++ b/python/t/test910Libvirt.py
@@ -0,0 +1,42 @@
+# libguestfs Python bindings
+# Copyright (C) 2014 Red Hat Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Fo...