Sha256: 46ede910daf162e8b3fd45d796bbf11ebfd3d6801796fa5d5d0db9b7ce627ed7
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
require "spec_helper" describe AwesomeTranslations::ModelInspector do let(:user_inspector) { AwesomeTranslations::ModelInspector.model_classes.select { |model_inspector| model_inspector.clazz == User }.first } let(:model_classes) { AwesomeTranslations::ModelInspector.model_classes.map(&:clazz).select { |clazz| !clazz.name.end_with?("::Translation") } } it "#model_classes" do require "jquery-rails" expect(model_classes.to_a.sort { |class1, class2| class1.name <=> class2.name }).to eq [Role, User] end it "#engines" do expect(AwesomeTranslations::ModelInspector.engines.map(&:class).sort { |class1, class2| class1.name <=> class2.name }).to eq [AwesomeTranslations::Engine, Haml::Rails::Engine, Jquery::Rails::Engine, MoneyRails::Engine] end it "#class_key" do expect(user_inspector.class_key).to eq "activerecord.models.user" end it "#class_key_one" do expect(user_inspector.class_key_one).to eq "activerecord.models.user.one" end it "#class_key_other" do expect(user_inspector.class_key_other).to eq "activerecord.models.user.other" end it "#attribute_key" do expect(user_inspector.attribute_key("first_name")).to eq "activerecord.attributes.user.first_name" end it "#snake_name" do expect(user_inspector.snake_name).to eq "user" end it "#attributes" do expect(user_inspector.attributes.map(&:name).to_a).to eq ["id", "email", "password", "age"] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
awesome_translations-0.0.25 | spec/lib/model_inspector_spec.rb |