Skip to content

Instantly share code, notes, and snippets.

@hopsoft
Last active February 9, 2018 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hopsoft/656e572bfc8936794f6a848faecf2d26 to your computer and use it in GitHub Desktop.
Save hopsoft/656e572bfc8936794f6a848faecf2d26 to your computer and use it in GitHub Desktop.
User Fixture
<% 100.times do |i| %>
user_<%= i %>:
id: <%= SecureRandom.uuid %>
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
email: <%= Faker::Internet.email %>
phone: <%= Faker::PhoneNumber.cell_phone %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment