Washington Botelho 598c58af7e
first commit
2017-10-30 22:30:09 -02:00

8 lines
121 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :user do
sequence(:name) { |i| "Name #{i}" }
end
end