2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-18 23:43:52 +00:00
|
|
|
Fabricator(:account_stat) do
|
2023-06-10 16:29:01 +00:00
|
|
|
account { Fabricate.build(:account) }
|
2023-03-04 16:12:09 +00:00
|
|
|
statuses_count '123'
|
|
|
|
following_count '456'
|
|
|
|
followers_count '789'
|
2018-11-18 23:43:52 +00:00
|
|
|
end
|