Class: I18nSimpleBackendLocalizeTimeTest
- Inherits:
-
Test::Unit::TestCase
- Object
- Test::Unit::TestCase
- I18nSimpleBackendLocalizeTimeTest
show all
- Includes:
- I18nSimpleBackendTestSetup
- Defined in:
- lib/vendor/i18n/test/simple_backend_test.rb
Instance Method Summary
collapse
#add_datetime_translations, #backend_get_translations, #setup_backend
Instance Method Details
#setup ⇒ Object
418
419
420
421
422
423
424
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 418
def setup
@old_timezone, ENV['TZ'] = ENV['TZ'], 'UTC'
@backend = I18n::Backend::Simple.new
add_datetime_translations
@morning = Time.parse '2008-01-01 6:00 UTC'
@evening = Time.parse '2008-01-01 18:00 UTC'
end
|
#teardown ⇒ Object
426
427
428
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 426
def teardown
@old_timezone ? ENV['TZ'] = @old_timezone : ENV.delete('TZ')
end
|
TODO Seems to break on Windows because ENV is ignored. What’s a better way to do this? def test_translate_given_the_default_format_it_uses_it
assert_equal 'Di, 01. Jan 2008 06:00:00 +0000', @backend.localize('de', @morning, :default)
end
443
444
445
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 443
def test_translate_given_a_day_name_format_it_returns_the_correct_day_name
assert_equal 'Dienstag', @backend.localize('de', @morning, '%A')
end
|
459
460
461
462
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 459
def test_translate_given_a_meridian_indicator_format_it_returns_the_correct_meridian_indicator
assert_equal 'am', @backend.localize('de', @morning, '%p')
assert_equal 'pm', @backend.localize('de', @evening, '%p')
end
|
451
452
453
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 451
def test_translate_given_a_month_name_format_it_returns_the_correct_month_name
assert_equal 'Januar', @backend.localize('de', @morning, '%B')
end
|
447
448
449
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 447
def test_translate_given_an_abbr_day_name_format_it_returns_the_correct_abbrevated_day_name
assert_equal 'Di', @backend.localize('de', @morning, '%a')
end
|
455
456
457
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 455
def test_translate_given_an_abbr_month_name_format_it_returns_the_correct_abbrevated_month_name
assert_equal 'Jan', @backend.localize('de', @morning, '%b')
end
|
468
469
470
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 468
def test_translate_given_an_unknown_format_it_does_not_fail
assert_nothing_raised{ @backend.localize 'de', @morning, '%x' }
end
|
464
465
466
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 464
def test_translate_given_no_format_it_does_not_fail
assert_nothing_raised{ @backend.localize 'de', @morning }
end
|
434
435
436
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 434
def test_translate_given_the_long_format_it_uses_it
assert_equal '01. Januar 2008 06:00', @backend.localize('de', @morning, :long)
end
|
430
431
432
|
# File 'lib/vendor/i18n/test/simple_backend_test.rb', line 430
def test_translate_given_the_short_format_it_uses_it
assert_equal '01. Jan 06:00', @backend.localize('de', @morning, :short)
end
|