Sha256: 8acdd357ad5ccc822174f28262d0c90ca3ba88c0981110bb5ba56e1164a26c55
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true require 'i18n/tasks' RSpec.describe I18n do let(:i18n) { I18n::Tasks::BaseTask.new } let(:missing_keys) { i18n.missing_keys } let(:unused_keys) { i18n.unused_keys } let(:inconsistent_interpolations) { i18n.inconsistent_interpolations } it 'does not have missing keys' do expect(missing_keys).to be_empty, "Missing #{missing_keys.leaves.count} i18n keys, run `i18n-tasks missing' to show them" end it 'does not have unused keys' do pending 'need to explore unused keys further' expect(unused_keys).to be_empty, "#{unused_keys.leaves.count} unused i18n keys, run `i18n-tasks unused' to show them" end it 'files are normalized' do # rubocop:disable RSpec/ExampleLength pending 'need to explore further normalization process' non_normalized = i18n.non_normalized_paths error_message = "The following files need to be normalized:\n" \ "#{non_normalized.map { |path| " #{path}" }.join("\n")}\n" \ "Please run `i18n-tasks normalize' to fix" expect(non_normalized).to be_empty, error_message end it 'does not have inconsistent interpolations' do error_message = "#{inconsistent_interpolations.leaves.count} i18n keys have inconsistent interpolations.\n" \ "Run `i18n-tasks check-consistent-interpolations' to show them" expect(inconsistent_interpolations).to be_empty, error_message end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
qa_server-7.6.0 | spec/i18n_spec.rb |
qa_server-7.5.1 | spec/i18n_spec.rb |