Sha256: 4413564d612cea748a9d684c981d16419e2088e44bca83d73282503ef072f701

Contents?: true

Size: 1.44 KB

Versions: 1

Compression:

Stored size: 1.44 KB

Contents

require 'test_helper'
require 'armot/puret_integration'

class PuretMigrationTest < ActiveSupport::TestCase
  def setup
    setup_db
    I18n.locale = I18n.default_locale = :en
    Post.create :title => "English title"
    Post.create :title => "Second english title"
    I18n::Backend::ActiveRecord::Translation.delete_all

    PostTranslation.create(:post_id => Post.first.id, :locale => "en", :title => 'English title', :text => "Some text")
    PostTranslation.create(:post_id => Post.last.id, :locale => "en", :title => 'Second english title')
  end

  def teardown
    teardown_db
  end

  test "db setup" do
    assert_equal 0, I18n::Backend::ActiveRecord::Translation.count
    assert_equal 2, Post.count
    assert_equal 2, PostTranslation.count
  end

  test "armot should not work" do
    assert_equal "translation missing: en.armot.posts.title.title_1", Post.first.title
  end

  test "should create i18n records for exiting puret translations" do
    Armot::PuretIntegration.migrate

    assert_equal 3, I18n::Backend::ActiveRecord::Translation.count
  end

  test "translations with armot should work after migrate" do
    Armot::PuretIntegration.migrate

    assert_equal "English title", Post.first.title
    assert_equal "Second english title", Post.last.title
  end

  test "non existing translations reamain the same" do
    Armot::PuretIntegration.migrate

    assert_equal "translation missing: en.armot.posts.text.text_2", Post.last.text
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
armot-0.1.0 test/puret_migration_test.rb