summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/fixtures/common.rb
blob: 8d5057614d8f6d3f934fe9f20bc36d2cfe83c2c9 (plain)
1
2
3
4
5
6
7
8
9
module ENVSpecs
  def self.encoding
    locale = Encoding.find('locale')
    if ruby_version_is '3' and platform_is :windows
      locale = Encoding::UTF_8
    end
    locale
  end
end