using ruby-debug in rspec (through rspec -d), the debugger refuses to step over statements when I execute "next"
It seems to always step into the statement
debugger
params[:appointment][:user_id] =
User.where(email: appointment_params[:user_id]).pluck(:id).first if appointment_params[:user_id].to_i == 0
params[:appointment][:country_id] =
Country.where(name: appointment_params[:country_id]).pluck(:id).first if appointment_params[:country_id].to_i == 0
@appointment = Appointment.new(appointment_params)
when I hit "n" and press enter, it steps into the User.where statement
I have no idea what might be causing this, any ideas?