aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/i18n_test.rb
blob: a67b6a5d8ce59479429a8be8bd211d5971d41dd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
require 'abstract_unit'

class I18nTest < Test::Unit::TestCase
  def setup
    @date = Date.parse("2008-7-2")
    @time = Time.utc(2008, 7, 2, 16, 47, 1)
  end
  
  uses_mocha 'I18nTimeZoneTest' do
    def test_time_zone_localization_with_default_format
      Time.zone.stubs(:now).returns Time.local(2000)
      assert_equal "Sat, 01 Jan 2000 00:00:00 +0100", Time.zone.now.l
    end
  end
  
  def test_date_localization_should_use_default_format
    assert_equal "2008-07-02", @date.l
  end
  
  def test_date_localization_with_default_format
    assert_equal "2008-07-02", @date.l(nil, :default)
  end
  
  def test_date_localization_with_short_format
    assert_equal "Jul 02", @date.l(nil, :short)
  end
  
  def test_date_localization_with_long_format
    assert_equal "July 02, 2008", @date.l(nil, :long)
  end
  
  def test_time_localization_should_use_default_format
    assert_equal "Wed, 02 Jul 2008 16:47:01 +0100", @time.l
  end
  
  def test_time_localization_with_default_format
    assert_equal "Wed, 02 Jul 2008 16:47:01 +0100", @time.l(nil, :default)
  end
  
  def test_time_localization_with_short_format
    assert_equal "02 Jul 16:47", @time.l(nil, :short)
  end
  
  def test_time_localization_with_long_format
    assert_equal "July 02, 2008 16:47", @time.l(nil, :long)
  end
    
  def test_day_names
    assert_equal Date::DAYNAMES, :'date.day_names'.t
  end
  
  def test_abbr_day_names
    assert_equal Date::ABBR_DAYNAMES, :'date.abbr_day_names'.t
  end
  
  def test_month_names
    assert_equal Date::MONTHNAMES, :'date.month_names'.t
  end
  
  def test_abbr_month_names
    assert_equal Date::ABBR_MONTHNAMES, :'date.abbr_month_names'.t
  end
  
  def test_date_order
    assert_equal [:year, :month, :day], :'date.order'.t
  end
  
  def test_time_am
    assert_equal 'am', :'time.am'.t
  end
  
  def test_time_pm
    assert_equal 'pm', :'time.pm'.t
  end
end