Browse Source

Fixed: ruby 1.9.3 Time Zone setting Internal error (#10442).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9244 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Jean-Philippe Lang 12 years ago
parent
commit
fec3e6c84b
2 changed files with 10 additions and 0 deletions
  1. 1
    0
      Gemfile
  2. 9
    0
      test/unit/lib/redmine/i18n_test.rb

+ 1
- 0
Gemfile View File

@@ -4,6 +4,7 @@ gem "rails", "2.3.14"
gem "i18n", "~> 0.4.2"
gem "coderay", "~> 1.0.0"
gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
gem "tzinfo", "~> 0.3.31"

# Optional gem for LDAP authentication
group :ldap do

+ 9
- 0
test/unit/lib/redmine/i18n_test.rb View File

@@ -60,6 +60,15 @@ class Redmine::I18nTest < ActiveSupport::TestCase
end
end

def test_time_for_each_zone
ActiveSupport::TimeZone.all.each do |zone|
User.current.stubs(:time_zone).returns(zone.name)
assert_nothing_raised "#{zone} failure" do
format_time(Time.now)
end
end
end

def test_time_format
set_language_if_valid 'en'
now = Time.parse('2011-02-20 15:45:22')

Loading…
Cancel
Save