summaryrefslogtreecommitdiff
path: root/test/lib/with_different_ofs.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-06-29 19:43:47 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-07-02 07:59:54 +0900
commitc3c0e3f5c9444c197779cb242de46dfffda79dec (patch)
tree03866471345f8c9baa68d548340199408aa51405 /test/lib/with_different_ofs.rb
parent142617c8e1cad65fa483c5beb78ab40a99626a87 (diff)
Move to tool/lib from test/lib.
Diffstat (limited to 'test/lib/with_different_ofs.rb')
-rw-r--r--test/lib/with_different_ofs.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/lib/with_different_ofs.rb b/test/lib/with_different_ofs.rb
deleted file mode 100644
index 559ed6a1d1..0000000000
--- a/test/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