我正在尝试使用 RSpec 为我在 RoR 中的测试创建一个自定义匹配器。
define :be_accessible do |attributes|
attributes = attributes.is_a?(Array) ? attributes : [attributes]
attributes.each do |attribute|
match do |response|
response.class.accessible_attributes.include?(attribute)
end
description { "#{attribute} should be accessible" }
failure_message_for_should { "#{attribute} should be accessible" }
failure_message_for_should_not { "#{attribute} should not be accessible" }
end
end
我希望能够在我的测试中编写如下内容:
...
should be_accessible(:name, :surname, :description)
...
但是使用上面定义的匹配器,我必须传递一个符号数组而不是用逗号分隔的符号,否则测试只检查第一个符号。
有任何想法吗?