Sha256: 869fcedbc0a37554be72fb8e4732750ee5984182480a691117ad49b4d8d6afdb

Contents?: true

Size: 783 Bytes

Versions: 266

Compression:

Stored size: 783 Bytes

Contents

require 'test_helper'

I18n::Tests.setup_rufus_tokyo

class I18nKeyValueApiTest < Test::Unit::TestCase
  include I18n::Tests::Basics
  include I18n::Tests::Defaults
  include I18n::Tests::Interpolation
  include I18n::Tests::Link
  include I18n::Tests::Lookup
  include I18n::Tests::Pluralization
  # include Tests::Api::Procs
  include I18n::Tests::Localization::Date
  include I18n::Tests::Localization::DateTime
  include I18n::Tests::Localization::Time
  # include Tests::Api::Localization::Procs

  STORE = Rufus::Tokyo::Cabinet.new('*')

  def setup
    I18n.backend = I18n::Backend::KeyValue.new(STORE)
    super
  end

  test "make sure we use the KeyValue backend" do
    assert_equal I18n::Backend::KeyValue, I18n.backend.class
  end
end if defined?(Rufus::Tokyo::Cabinet)

Version data entries

266 entries across 236 versions & 47 rubygems

Version Path
sayso-i18n-0.5.0.001 test/api/key_value_test.rb
i18n-0.6.0 test/api/key_value_test.rb
i18n-0.6.0beta1 test/api/key_value_test.rb
i18n-0.5.0 test/api/key_value_test.rb
i18n-0.5.0beta3 test/api/key_value_test.rb
i18n-0.5.0beta2 test/api/key_value_test.rb