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