blob: d005b638e4b9ccbba9fdf1ea58b4d35e1d041115 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
require "cases/helper"
class PermissionSetTest < ActiveModel::TestCase
def setup
@permission_list = ActiveModel::MassAssignmentSecurity::PermissionSet.new
end
test "+ stringifies added collection values" do
symbol_collection = [ :admin ]
new_list = @permission_list += symbol_collection
assert new_list.include?('admin'), "did not add collection to #{@permission_list.inspect}}"
end
test "include? normalizes multi-parameter keys" do
multi_param_key = 'admin(1)'
new_list = @permission_list += [ 'admin' ]
assert new_list.include?(multi_param_key), "#{multi_param_key} not found in #{@permission_list.inspect}"
end
test "include? normal keys" do
normal_key = 'admin'
new_list = @permission_list += [ normal_key ]
assert new_list.include?(normal_key), "#{normal_key} not found in #{@permission_list.inspect}"
end
end
|