I ran into exactly the same problem when going through the (otherwise brilliant) tutorial.
What helped me was commenting out a line in config/application.rb. Here is what rails generates when running rails new sample_app -T on my system:
require File.expand_path('../boot', __FILE__)
# Pick the frameworks you want:
require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
require "sprockets/railtie"
# require "rails/test_unit/railtie"
...
After doing some research on the internet I found this, which helped a lot. So here is what I did:
I commented out the line require "active_record/railtie", removed the comment from the line require "rails/test_unit/railtie" and added another line like so:
require File.expand_path('../boot', __FILE__)
# Pick the frameworks you want:
# require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
require "sprockets/railtie"
require "rails/test_unit/railtie"
# For errors like ActiveRecord::RecordNotFound
require "active_record"
Now everything works just fine.
N.B.: I'm just a Rails rookie myself who ran into this exact problem, so you should take this answer with a grain of salt ...