rspecの標準出力を潰(されていたのをもど)す
Date:2016-06-16 19:53:26 +0900
Categories: ETC
Categories: ETC
厳密には、「rspecの標準出力が潰されていたので戻す」です。
spec/spec_helper.rb
config.around(:example) do |example| $stdout = StringIO.new example.run $stdout = STDOUT end
こうなっているところを
# config.around(:example) do |example| # $stdout = StringIO.new # example.run # $stdout = STDOUT # end
こうすると標準出力が戻ってきた。
Tweet