Sha256: e9a0ebca5f04690c47c40f74b83c7508852687f7ea3d56f16d4ba32f42078901

Contents?: true

Size: 942 Bytes

Versions: 4

Compression:

Stored size: 942 Bytes

Contents

# encoding: utf-8

require 'gettext'

class TestNSGetText
  include GetText
  bindtextdomain("nsgettext", :path => "locale")

  def test_1
    [ns_("AAA|BBB", "CCC", 1), ns_("AAA|BBB", "CCC", 2)]
  end

  def test_2
    [nsgettext("AAA|BBB", "CCC", 1), nsgettext("AAA|BBB", "CCC", 2)]
  end

  def test_3
    [ns_("AAA", "BBB", 1), ns_("AAA", "BBB", 2)] #not found
  end

  def test_4
    [ns_("AAA|CCC", "DDD", 1), ns_("AAA|CCC", "DDD", 2)] #not found
  end

  def test_5
    [ns_("AAA|BBB|CCC", "DDD", 1), ns_("AAA|BBB|CCC", "DDD", 2)] #not found
  end

  def test_6
    [ns_("AAA$BBB", "CCC", 1, "$"), ns_("AAA$BBB", "CCC", 2, "$")] #not found
  end

  def test_7
    [ns_("AAA$B|BB", "CCC", 1, "$"), ns_("AAA$B|BB", "CCC", 2, "$")] #not found
  end

  def test_8
    [ns_("AAA$B|CC", "DDD", 1, "$"), ns_("AAA$B|CC", "DDD", 2, "$")]
  end

  def test_9
    [ns_("AAA|CCC|BBB", "DDD", 1), ns_("AAA|CCC|BBB", "DDD", 2)] #not found
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
gettext-2.2.1 test/testlib/nsgettext.rb
gettext-2.2.0 test/testlib/nsgettext.rb
ofm_gettext-2.0.1 test/testlib/nsgettext.rb
ofm_gettext-2.0.0 test/testlib/nsgettext.rb