summaryrefslogtreecommitdiff
path: root/lib/Test/t/mix.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Test/t/mix.t')
-rw-r--r--lib/Test/t/mix.t10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/Test/t/mix.t b/lib/Test/t/mix.t
index a746ba66b5..5298338318 100644
--- a/lib/Test/t/mix.t
+++ b/lib/Test/t/mix.t
@@ -46,5 +46,13 @@ ok 4 # skip
EXPECT
+sub commentless {
+ my $in = $_[0];
+ $in =~ s/^#[^\n]*\n//mg;
+ $in =~ s/\n#[^\n]*$//mg;
+ return $in;
+}
+
+
print "1..1\n";
-ok( $out, $expect );
+ok( commentless($out), commentless($expect) );