https://github.com/r7kamura/response_code_matchers 夕方ぐらいにControllerのspecを書いていて「subject.code.should == "422"...」みたいなコードを書いていて、急に思い立って初めてCustom MatcherをつくってGemにした。 使い方 spec_helper.rbでこういう感じで設定すると使えるようになる。 # spec/spec_helper.rb require "response_code_matchers" RSpec.configure do |config| config.include ResponseCodeMatchers end 今まではresponse.code.should == "422"って書いてたのを、こういう風に書けるようになる。Railsのcontrollerの