discourse/spec/fabricators/user_profile_fabricator.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
176 B
Ruby
Raw Normal View History

# frozen_string_literal: true
Fabricator(:user_profile) do
2014-06-10 00:19:08 -05:00
bio_raw "I'm batman!"
2019-03-10 20:57:42 -05:00
user
end
Fabricator(:user_profile_long, from: :user_profile) { bio_raw("trout" * 1000) }