2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-15 16:10:45 -05:00
|
|
|
Fabricator(:web_crawler_request) do
|
|
|
|
user_agent { sequence(:ua) { |i| "Googlebot #{i}.0" } }
|
2020-04-22 13:49:53 -05:00
|
|
|
date { Time.zone.now.to_date }
|
2018-03-15 16:10:45 -05:00
|
|
|
count 0
|
|
|
|
end
|