summaryrefslogtreecommitdiff
path: root/tool/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-07-09 21:16:49 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-07-09 21:16:49 +0900
commit9f275f7971ee7e659e0965122b2bb57e785d0181 (patch)
tree2d42d3dc858bfd93384a2fb3abebdde5c5739419 /tool/lib
parentf9a2440866a2df05fcbacf31c4f4e5e18b996e15 (diff)
Restore support library for only test files that are digest and csv.
Diffstat (limited to 'tool/lib')
-rw-r--r--tool/lib/with_different_ofs.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/tool/lib/with_different_ofs.rb b/tool/lib/with_different_ofs.rb
deleted file mode 100644
index 559ed6a1d1..0000000000
--- a/tool/lib/with_different_ofs.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-module DifferentOFS
- module WithDifferentOFS
- def setup
- super
- verbose, $VERBOSE = $VERBOSE, nil
- @ofs, $, = $,, "-"
- $VERBOSE = verbose
- end
- def teardown
- verbose, $VERBOSE = $VERBOSE, nil
- $, = @ofs
- $VERBOSE = verbose
- super
- end
- end
-
- def self.extended(klass)
- super(klass)
- klass.const_set(:DifferentOFS, Class.new(klass).class_eval {include WithDifferentOFS}).name
- end
-end