前提
Gemfileにpry-railsを入れている。
group :development, :test do
gem 'pry-rails'
end
これで下記のように
RSpec.describe Model, :type => :model do
describe "test" do
binding.pry # ここで処理がとまる
以下、テストコード...
end
当たり前っちゃあ、当たり前。
参考URL
http://stackoverflow.com/questions/5446594/running-ruby-debug-in-rspec