5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-02 08:06:06 +00:00
panel/test/factories/site.rb

8 lines
121 B
Ruby
Raw Normal View History

2019-07-11 19:00:28 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :site do
2019-07-12 18:34:16 +00:00
name { "test-#{SecureRandom.hex}" }
2019-07-11 19:00:28 +00:00
end
end