test: Remove temporary file on start-up
authorJens Georg <mail@jensge.org>
Wed, 19 Oct 2011 08:00:16 +0000 (10:00 +0200)
committerJens Georg <mail@jensge.org>
Wed, 19 Oct 2011 08:00:16 +0000 (10:00 +0200)
tests/rygel-http-post-test.vala

index 998204b..985ff1d 100644 (file)
@@ -64,6 +64,9 @@ public class Rygel.HTTPPostTest : GLib.Object {
     }
 
     public virtual void run () throws Error {
+        // cleanup
+        var file = File.new_for_uri (MediaItem.URI);
+        FileUtils.remove (file.get_path ());
         Timeout.add_seconds (3, this.on_timeout);
         this.server.message_received.connect (this.on_message_received);
         this.client.completed.connect (this.on_client_completed);