HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.7.4/spec/ruby/library/win32ole/win32ole/locale_spec.rb
platform_is :windows do
  require_relative '../fixtures/classes'

  describe "WIN32OLE.locale" do
    it "gets locale" do
      WIN32OLE.locale.should == WIN32OLE::LOCALE_SYSTEM_DEFAULT
    end
  end

  describe "WIN32OLE.locale=" do
    it "sets locale to Japanese, if available" do
      begin
        begin
          WIN32OLE.locale = 1041
        rescue WIN32OLERuntimeError
          STDERR.puts("\n#{__FILE__}:#{__LINE__}:#{self.class.name}.test_s_locale_set is skipped(Japanese locale is not installed)")
          return
        end

        WIN32OLE.locale.should == 1041
        WIN32OLE.locale = WIN32OLE::LOCALE_SYSTEM_DEFAULT
        -> { WIN32OLE.locale = 111 }.should raise_error WIN32OLERuntimeError
        WIN32OLE.locale.should == WIN32OLE::LOCALE_SYSTEM_DEFAULT
      ensure
        WIN32OLE.locale.should == WIN32OLE::LOCALE_SYSTEM_DEFAULT
      end
    end
  end
end