我为spec_helper
.
module TireHelper
def clear_tire_index_for(*resources)
resources.each do |res|
res.index.delete
res.tire.create_elasticsearch_index
res.index.refresh
end
end
end
我想得到我的清单resources
。
我需要它,因为我想在每个规格之前清除所有轮胎指数。