When performing success_count with BatchResponse, it looks like the following.
success_count = responses.count(:success?)
":success?" was not executed in the block, and the count was always 0.
Shouldn't it be changed to "&: method name" as shown below?
success_count = responses.count(&:success?)