Sha256: 2635921e60598dc7d43d33262f36bfce5d7b213ac3cdc1fe0de3b766d631657f

Contents?: true

Size: 493 Bytes

Versions: 4

Compression:

Stored size: 493 Bytes

Contents

require 'spec_helper'

describe 'locale' do
  Dir.glob('config/locales/*.yml') do |locale_file|
    context locale_file do
      it { should be_parseable }
      it { should have_valid_pluralization_keys }
      it { should_not have_missing_pluralization_keys }
      it { should have_one_top_level_namespace }
      it { should_not have_legacy_interpolations }
      it { should have_a_valid_locale }
      it { should be_a_complete_translation_of 'config/locales/en.yml' }
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
solidus_editor-1.0.0 spec/translations/locale_spec.rb
spree-faq-2.2.0 spec/translations/locale_spec.rb
spree-faq-2.1.0 spec/translations/locale_spec.rb
spree-faq-2.0.0 spec/translations/locale_spec.rb