5 lines
90 B
Ruby
5 lines
90 B
Ruby
Factory.define(:ban) do |f|
|
|
f.reason {Faker::Lorem.words.join(" ")}
|
|
f.duration 60
|
|
end
|