summaryrefslogtreecommitdiffstats
path: root/t/merge.t
diff options
context:
space:
mode:
authorJason <jason@socialflow.com>2013-08-28 16:01:42 +0000
committerJason <jason@socialflow.com>2013-08-28 16:01:42 +0000
commitf488bab9597a7c78773edfe1ee740525df5bb74e (patch)
tree36e63d3fd9ce94b2b43418b75fcb074afbe1e3a3 /t/merge.t
parent2bf66a5ae431e3072e4e890dc2324fe0af612d61 (diff)
downloadspreadsheet-template-f488bab9597a7c78773edfe1ee740525df5bb74e.tar.gz
spreadsheet-template-f488bab9597a7c78773edfe1ee740525df5bb74e.zip
fix to docs and removed output from test
Diffstat (limited to 't/merge.t')
-rw-r--r--t/merge.t5
1 files changed, 0 insertions, 5 deletions
diff --git a/t/merge.t b/t/merge.t
index 0d270db..14e8909 100644
--- a/t/merge.t
+++ b/t/merge.t
@@ -62,11 +62,6 @@ my $data = do { local $/; local @ARGV = ('t/data/merge.json'); <> };
my $value2 = $ws->get_cell(2,0)->value;
my $sum = $value1 + $value2;
is($ws->get_cell(3,0)->value, $sum);
-
- open my $fh2, '>', 'out.xlsx';
- binmode $fh2;
- $fh2->print($excel);
- $fh2->close;
}
done_testing;