Sha256: 2fb676d167e6022db91660295c9aba8472712f3ce6f859266f893270811adbe1

Contents?: true

Size: 492 Bytes

Versions: 2

Compression:

Stored size: 492 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

2 entries across 2 versions & 1 rubygems

Version Path
spree-print-invoice-2.2.0 spec/translations/locale_spec.rb
spree-print-invoice-2.1.0 spec/translations/locale_spec.rb