mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
8 lines
151 B
Ruby
8 lines
151 B
Ruby
Fabricator(:user_profile) do
|
|
bio_raw "I'm batman!"
|
|
end
|
|
|
|
Fabricator(:user_profile_long, from: :user_profile) do
|
|
bio_raw ("trout" * 1000)
|
|
user
|
|
end
|