Sha256: 2ea476baea494d50e3483f0d5142176b8f025e5d2be5a61e44f431fc45b36ed5
Contents?: true
Size: 1.22 KB
Versions: 13
Compression:
Stored size: 1.22 KB
Contents
require "spec_helper" describe AwesomeTranslations::ErbInspector::TranslationInspector do let(:erb_inspector) do AwesomeTranslations::ErbInspector.new( dirs: [Rails.root.to_s] ) end let(:files) { erb_inspector.files.to_a } let(:file_paths) { files.map(&:file_path) } let(:user_index_inspector) { files.find { |file_inspector| file_inspector.file_path == "app/views/users/index.html.haml" } } let(:user_index_translations) { user_index_inspector.translations.to_a } let(:hello_world_translation) { user_index_translations.find { |translation| translation.key == ".hello_world" } } let(:user_was_created_translation) do files .find { |file_inspector| file_inspector.file_path == "app/controllers/users_controller.rb" } .translations .find { |translation| translation.key == ".user_was_created" } end it "#full_key" do expect(hello_world_translation.full_key).to eq "users.index.hello_world" end it "#full_path" do expect(hello_world_translation.full_path).to eq Rails.root.join("app", "views", "users", "index.html.haml").to_s end it "#dir" do expect(user_was_created_translation.dir).to end_with "spec/dummy/config/locales/awesome_translations/users/create" end end
Version data entries
13 entries across 13 versions & 1 rubygems