Adds integrity check for badge descriptions

This commit is contained in:
Robin Ward 2016-04-12 12:55:49 -04:00
parent 5518141ad5
commit 64df98e348
No known key found for this signature in database
GPG Key ID: 0E091E2B4ED1B83D
1 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,13 @@ describe "i18n integrity checks" do
end
end
it "has an i18n key for each badge description" do
Badge.where(system: true).each do |b|
expect(b.long_description).to be_present
expect(b.description).to be_present
end
end
it "needs an i18n key (notification_types) for each Notification type" do
Notification.types.each_key do |type|
next if type == :custom || type == :group_message_summary