8
我已經安裝了工廠女孩,並試圖與規範一起使用它。未定義的方法`創建'軌道規範。
scenario 'User signs in' do
create :user, email: '[email protected]', password: 'testpassword'
visit '/users/sign_in'
fill_in 'Email', with: '[email protected]'
fill_in 'Password', with: 'testpassword'
end
我收到以下錯誤消息。
Failure/Error: create :user, email: '[email protected]', password: 'testpassword'
NoMethodError:
undefined method `create' for #<RSpec::ExampleGroups::UserSignIn:0x007fe6324816b8>
嘗試'FactoryGirl.create' –