I've checked my simplecov result and I've seen that
record = User.where("fb_id = ? or email = ? ", params[:fb_id], params[:email]).first_or_create do |rows|
rows.first_name = params[:first_name]
rows.last_name = params[:first_name]
etc(all the variables after do |rows| ) haven't covered.
Any ideas, how could I test this stuff ?