discourse/spec/fabricators/post_custom_field_fabricato...

8 lines
141 B
Ruby

# frozen_string_literal: true
Fabricator(:post_custom_field) do
post
name { sequence(:key) { |i| "key#{i}" } }
value "test value"
end