summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorochko <[email protected]>2012-03-28 12:45:25 +0900
committerochko <[email protected]>2012-03-28 12:45:25 +0900
commitdb2633cd108ee40e8fa740feae90a33a33087501 (patch)
tree26a9cd08e7037b2d8574d01dd693db4fda15a915 /test
parentc97f35a31fb20d1dd3f6383c87a6a7bfc43a625a (diff)
downloadcaxlsx-db2633cd108ee40e8fa740feae90a33a33087501.tar.gz
caxlsx-db2633cd108ee40e8fa740feae90a33a33087501.zip
use consisten name for benchmark xlsx files
Diffstat (limited to 'test')
-rw-r--r--test/benchmark.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/benchmark.rb b/test/benchmark.rb
index bb9a7b7d..a2179a24 100644
--- a/test/benchmark.rb
+++ b/test/benchmark.rb
@@ -24,7 +24,7 @@ Benchmark.bm(100) do |x|
sheet << row
end
end
- p.serialize("example.xlsx")
+ p.serialize("example_noautowidth.xlsx")
}
x.report('axlsx') {
@@ -38,7 +38,7 @@ Benchmark.bm(100) do |x|
sheet << row
end
end
- p.serialize("example.xlsx")
+ p.serialize("example_autowidth.xlsx")
}
x.report('axlsx_shared') {
@@ -53,7 +53,7 @@ Benchmark.bm(100) do |x|
end
end
p.use_shared_strings = true
- p.serialize("example.xlsx")
+ p.serialize("example_shared.xlsx")
}
x.report('axlsx_stream') {