Sha256: ce4e216c1c5d66151f65a0f380cc91d8920a50366ffc23cb842a5be2d7800226
Contents?: true
Size: 756 Bytes
Versions: 21
Compression:
Stored size: 756 Bytes
Contents
require "spec_helper" describe AwesomeTranslations::ErbInspector::FileInspector 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" } } describe "#translations" do it "finds the right number of translations" do expect(user_index_translations.length).to eq 3 end end end
Version data entries
21 entries across 21 versions & 1 rubygems