mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
9 lines
177 B
Ruby
9 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:user_profile) do
|
|
bio_raw "I'm batman!"
|
|
user
|
|
end
|
|
|
|
Fabricator(:user_profile_long, from: :user_profile) { bio_raw ("trout" * 1000) }
|