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