Sha256: c59ef2fe978007d6a6da010c6ec1925789fb7f5eacf9a3bac2d4a08180f668dc

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

require "spec_helper"

describe GettextSimpleRails::Translators::ActiveRecordTranslator do
  before do
    # Make it possible to call the Rake task.
    ::Dummy::Application.load_tasks
    
    # Clean up any existing translations.
    FileUtils.rm_r(GettextSimpleRails.translation_dir) if File.exists?(GettextSimpleRails.translation_dir)
    
    # Generate model translations so we can check them.
    ::Rake::Task["gettext_simple_rails:generate_translator_files"].execute
  end
  
  it "should generate translations for validations" do
    filepath = "#{GettextSimpleRails.translation_dir}/active_record_translator_translations.rb"
    cont = File.read(filepath)
    cont.should include "_('activerecord.errors.models.user.attributes.name.too_short')"
    cont.should include "_('activerecord.errors.models.user.attributes.name.invalid')"
    cont.should include "_('activerecord.errors.models.user.attributes.name.blank')"
    cont.should include "_('activerecord.errors.models.user.attributes.name.taken')"
    cont.should include "_('activerecord.errors.models.user.attributes.name.invalid')"
    cont.should include "_('activerecord.errors.models.user.attributes.email.invalid')"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gettext_simple_rails-0.0.9 spec/active_record_spec.rb