Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

FactoryBot Generator

Depends on RSpec Generator

What you get

Installs factory_bot_rails

Factory Syntax methods

Allow you to use the short hand methods for creating or building factories

it 'tests something' do
  created_user = create(:user)
  built_user = build(:user)
end