class FormCollectionsHelperTest
Public Instance Methods
assert_no_select(selector, value = nil)
click to toggle source
# File actionview/test/template/form_collections_helper_test.rb, line 8 def assert_no_select(selector, value = nil) assert_select(selector, text: value, count: 0) end
with_collection_check_boxes(*args, &block)
click to toggle source
# File actionview/test/template/form_collections_helper_test.rb, line 16 def with_collection_check_boxes(*args, &block) @output_buffer = collection_check_boxes(*args, &block) end