summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rw-r--r--lib/Config/HAProxy.pm3
-rw-r--r--t/format.t17
-rw-r--r--t/select.t1
4 files changed, 10 insertions, 15 deletions
diff --git a/Changes b/Changes
index f67f71f..2fe0426 100644
--- a/Changes
+++ b/Changes
@@ -2,2 +2,6 @@ Revision history for Perl extension Config::HAProxy.
+1.01 Thu Jul 12 09:04:28 2018
+ - set minimal required Perl version
+ - drop dependency on autodie
+
1.00 Sun Jul 8 19:57:57 2018
diff --git a/lib/Config/HAProxy.pm b/lib/Config/HAProxy.pm
index 74eafa4..9a8d666 100644
--- a/lib/Config/HAProxy.pm
+++ b/lib/Config/HAProxy.pm
@@ -373,3 +373,4 @@ Saves the parse tree in the configuration file.
-Writes configuration to the named file or file handle. If B<$file> is the
+Writes configuration to the named file or file handle. First argument
+can be a file name, file handle or a string reference. If it is the
only argument, the original indentation is preserved. Otherwise, if
diff --git a/t/format.t b/t/format.t
index 06b9884..2d124fc 100644
--- a/t/format.t
+++ b/t/format.t
@@ -5,3 +5,2 @@ use warnings;
use Test::More;
-use autodie;
@@ -16,5 +15,3 @@ isa_ok($hp,'Test::HAProxy');
my $s;
-open(my $fh, '>', \$s);
-$hp->write($fh);
-close $fh;
+$hp->write(\$s);
@@ -35,5 +32,3 @@ backend out
-open($fh, '>', \$s);
-$hp->write($fh, indent => 2);
-close $fh;
+$hp->write(\$s, indent => 2);
@@ -54,5 +49,3 @@ backend out
-open($fh, '>', \$s);
-$hp->write($fh, indent => 2, reindent_comments => 1);
-close $fh;
+$hp->write(\$s, indent => 2, reindent_comments => 1);
@@ -73,5 +66,3 @@ backend out
-open($fh, '>', \$s);
-$hp->write($fh, indent => 4, tabstop => [ 10, 24 ]);
-close $fh;
+$hp->write(\$s, indent => 4, tabstop => [ 10, 24 ]);
diff --git a/t/select.t b/t/select.t
index 0be1c9c..1930ff6 100644
--- a/t/select.t
+++ b/t/select.t
@@ -5,3 +5,2 @@ use warnings;
use Test::More;
-use autodie;

Return to:

Send suggestions and report system problems to the System administrator.