summaryrefslogtreecommitdiff
path: root/test/with_different_ofs.rb
blob: 76dfa6896ca261cf9dd2be258ee754e0f2a8cd7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module DifferentOFS
  module WithDifferentOFS
    def setup
      super
      @ofs, $, = $,, "-"
    end
    def teardown
      $, = @ofs
      super
    end
  end

  def self.extended(klass)
    super(klass)
    klass.const_set(:DifferentOFS, Class.new(klass).class_eval {include WithDifferentOFS}).name
  end
end