Sha256: c168c9b47405ae9351c5881090c0f654d51f7c670773c3ec7a89a7fff1df5cc1

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

FactoryGirl.define do

  factory :user_ivan, class: 'User' do
    name                  'ivan'
    email                 'jov777@mail.ru'
    password              '12345678'
    password_confirmation '12345678'
  end

  factory :user_other, class: 'User' do
    name                  'other'
    email                 'Genom-1990@yandex.ru'
    password              '12345678'
    password_confirmation '12345678'
  end

  factory :cat_user, class: 'Cat' do
    name                  'other'
    email                 'Genom-1990@yandex.ru'
    password              '12345678'
    password_confirmation '12345678'
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zetto-2.2.0 spec/factories/users.rb