aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/file_rename.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/file_rename.yml')
-rw-r--r--benchmark/file_rename.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/benchmark/file_rename.yml b/benchmark/file_rename.yml
deleted file mode 100644
index f337026c14..0000000000
--- a/benchmark/file_rename.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-prelude: |
- # rename file
-benchmark:
- file_rename: |
- require 'tempfile'
-
- max = 100_000
- tmp = [ Tempfile.new('rename-a'), Tempfile.new('rename-b') ]
- a, b = tmp.map { |x| x.path }
- tmp.each { |t| t.close } # Windows can't rename files without closing them
- max.times do
- File.rename(a, b)
- File.rename(b, a)
- end
-loop_count: 1