Code cleanup.

This commit is contained in:
Martin Edenhofer 2017-04-25 00:16:04 +02:00
parent 82176fdcda
commit c53194b606

View file

@ -35,7 +35,7 @@ class ObjectCacheTest < ActiveSupport::TestCase
end end
test 'user cache' do test 'user cache' do
roles = Role.where( name: %w(Agent Admin) ) roles = Role.where(name: %w(Agent Admin))
groups = Group.all groups = Group.all
# be sure that minimum one admin is available # be sure that minimum one admin is available
@ -103,13 +103,13 @@ class ObjectCacheTest < ActiveSupport::TestCase
test 'group cache' do test 'group cache' do
name = 'object cache test ' + rand(9_999_999).to_s name = "object cache test #{rand(9_999_999)}"
group = Group.create( group = Group.create!(
name: name, name: name,
updated_by_id: 1, updated_by_id: 1,
created_by_id: 1, created_by_id: 1,
) )
group_new = Group.where( name: name).first group_new = Group.where(name: name).first
assert_equal(name, group_new[:name], 'verify by where') assert_equal(name, group_new[:name], 'verify by where')
# lookup by name # lookup by name