Don't try and look for variables in non-existent values
This commit is contained in:
parent
fe3eaafd3e
commit
91a9738ee8
1 changed files with 4 additions and 2 deletions
|
@ -30,8 +30,10 @@ class I18nTest < ActiveSupport::TestCase
|
|||
value.each do |subkey,subvalue|
|
||||
# assert plural_keys.include?(subkey), "#{key}.#{subkey} is not a valid plural key"
|
||||
|
||||
subvalue.scan(/%\{(\w+)\}/) do
|
||||
assert variables.include?($1), "#{key}.#{subkey} uses unknown interpolation variable #{$1}"
|
||||
unless subvalue.nil?
|
||||
subvalue.scan(/%\{(\w+)\}/) do
|
||||
assert variables.include?($1), "#{key}.#{subkey} uses unknown interpolation variable #{$1}"
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue