So how we resolve the error in initialize function,Which thing need to be done to remove this error
Here is the Factories/user.rb
FactoryGirl.define do
factory :user do |u|
u.first_name Faker::Name.first_name
u.last_name Faker::Name.last_name
u.email Faker::Internet.email
u.username Faker::Name.name
u.title Faker::Name.title
u.password "hellohello"
u.password_confirmation "hellohello"
end
end
Here is the mode spec model/user_spec.rb
require 'rails_helper'
RSpec.describe User, :type => :model do
user = ''
describe "create" do
user = FactoryGirl.create(:user)
end
#describe "validations"
describe "Count all the user" do
it "should have one item created before being created" do
#binding.pry
expect(User.all.count).to eq(1)
end
end
end
When testing the model user_spec.rb model it gives the error: