Applied rubocop cop 'Style/WordArray'.

This commit is contained in:
Thorsten Eckel 2015-07-03 17:35:28 +02:00
parent 1806193619
commit b9b39014ae
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ returns
list.each {|model_class, model_attributes|
references[:model][model_class.to_s] = 0
next if !model_attributes[:attributes]
['created_by_id', 'updated_by_id'].each {|item|
%w(created_by_id updated_by_id).each {|item|
if model_attributes[:attributes].include?(item)
count = model_class.where("#{item} = ?", object_id).count
next if count == 0

View file

@ -6,7 +6,7 @@ class ModelTest < ActiveSupport::TestCase
# create base
groups = Group.where( name: 'Users' )
roles = Role.where( name: ['Agent', 'Admin'] )
roles = Role.where( name: %w(Agent Admin) )
agent1 = User.create_or_update(
login: 'model-agent1@example.com',
firstname: 'Model',