summaryrefslogtreecommitdiff
path: root/test/lib/with_different_ofs.rb
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 /test/lib/with_different_ofs.rb
parentf9a2440866a2df05fcbacf31c4f4e5e18b996e15 (diff)
Restore support library for only test files that are digest and csv.
Diffstat (limited to 'test/lib/with_different_ofs.rb')
-rw-r--r--test/lib/with_different_ofs.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/lib/with_different_ofs.rb b/test/lib/with_different_ofs.rb
new file mode 100644
index 0000000000..559ed6a1d1
--- /dev/null
+++ b/test/lib/with_different_ofs.rb
@@ -0,0 +1,22 @@
+# 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