Sha256: bc2ac4c854df2f8678acf9cc6c3f1219d10c2cac16cffe878eaf9957ac6f5e8d

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

# encoding: utf-8

require File.dirname(__FILE__) + '/../../test_helper.rb'
require 'i18n/locale/tag'
require 'i18n/locale/tag/simple'

class I18nLocaleTagSimpleTest < Test::Unit::TestCase
  include I18n::Locale

  test "returns 'de' as the language subtag in lowercase" do
    assert_equal %w(de Latn DE), Tag::Simple.new('de-Latn-DE').subtags
  end

  test "returns a formatted tag string from #to_s" do
    assert_equal 'de-Latn-DE', Tag::Simple.new('de-Latn-DE').to_s
  end
  
  test "returns an array containing the formatted subtags from #to_a" do
    assert_equal %w(de Latn DE), Tag::Simple.new('de-Latn-DE').to_a
  end

  # Tag inheritance

  test "#parent returns 'de-Latn' as the parent of 'de-Latn-DE'" do
    assert_equal 'de-Latn', Tag::Simple.new('de-Latn-DE').parent.to_s
  end

  test "#parent returns 'de' as the parent of 'de-Latn'" do
    assert_equal 'de', Tag::Simple.new('de-Latn').parent.to_s
  end

  test "#self_and_parents returns an array of 3 tags for 'de-Latn-DE'" do
    assert_equal %w(de-Latn-DE de-Latn de), Tag::Simple.new('de-Latn-DE').self_and_parents.map { |tag| tag.to_s}
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
pepe-i18n-0.2.0 test/locale/tag/simple_test.rb
thedarkone-i18n-0.2.0 test/locale/tag/simple_test.rb
polish-0.0.5 lib/vendor/i18n/test/locale/tag/simple_test.rb
polish-0.0.4 lib/vendor/i18n/test/locale/tag/simple_test.rb
polish-0.0.3 lib/vendor/i18n/test/locale/tag/simple_test.rb
polish-0.0.2 lib/vendor/i18n/test/locale/tag/simple_test.rb
polish-0.0.1 lib/vendor/i18n/test/locale/tag/simple_test.rb