Sha256: ab475073eb963f5c288e300f2fde6b5242fdb8db79950a53c8fd9009d857901c
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
begin require 'locale/driver/jruby' require 'test/unit' class TestDiverJRuby < Test::Unit::TestCase def setup ENV["LC_ALL"] = nil ENV["LC_MESSAGES"] = nil ENV["LANG"] = nil ENV["LANGUAGE"] = nil end def set_locale(tag) java.util.Locale.setDefault(java.util.Locale.new(tag.language, tag.region, tag.variants.to_s)) end def test_charset # Depends on system value when jvm is started. end def test_locales tag = Locale::Tag::Common.parse("ja-JP") set_locale(tag) assert_equal [tag], Locale::Driver::JRuby.locales end def test_locales_with_env ENV["LC_ALL"] = "ja_JP.EUC-JP" assert_equal Locale::Tag::Posix.parse("ja_JP.EUC-JP"), Locale::Driver::JRuby.locales[0] assert_equal "EUC-JP", Locale::Driver::JRuby.charset ENV["LC_ALL"] = "ja_JP" assert_equal Locale::Tag::Posix.parse("ja_JP"), Locale::Driver::JRuby.locales[0] ENV["LC_ALL"] = "C" assert_equal Locale::Tag::Posix.parse("C"), Locale::Driver::JRuby.locales[0] end end rescue LoadError puts "jruby test was skipped." end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
locale-2.0.5 | test/test_driver_jruby.rb |
locale-2.0.4 | test/test_driver_jruby.rb |