mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:45:21 +08:00
8 lines
162 B
Ruby
8 lines
162 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:user_custom_field) do
|
||
|
user
|
||
|
name { Fabricate(:user_field).id }
|
||
|
value { sequence(:value) { |n| "value#{n}" } }
|
||
|
end
|