update
[urisagit/Perl-Docs.git] / t / append_null.t
diff --git a/t/append_null.t b/t/append_null.t
deleted file mode 100644 (file)
index 3c8b924..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/local/bin/perl -w
-
-use strict ;
-use File::Slurp ;
-
-use Test::More tests => 1 ;
-
-my $data = <<TEXT ;
-line 1
-more text
-TEXT
-
-my $file = 'xxx' ;
-
-unlink $file ;
-
-my $err = write_file( $file, $data ) ;
-append_file( $file, '' ) ;
-
-my $read_data = read_file( $file ) ;
-
-is( $data, $read_data ) ;
-
-unlink $file ;