build: Create an AUTHORS file.
[libguestfs.git] / python / t / 010-launch.py
index c2bdd1d..93a8154 100644 (file)
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
+import os
 import guestfs
 
-g = guestfs.guestfs()
+g = guestfs.GuestFS()
 f = open ("test.img", "w")
 f.truncate (500 * 1024 * 1024)
 f.close ()
 g.add_drive ("test.img")
 g.launch ()
-g.wait_ready ()
+
+os.unlink ("test.img")