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