Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 363 Bytes

File metadata and controls

18 lines (12 loc) · 363 Bytes

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