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