Module: Tumugi::Test::Helpers
- Defined in:
- lib/tumugi/test/helper.rb
Instance Method Summary collapse
Instance Method Details
#capture_stdout ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/tumugi/test/helper.rb', line 10 def capture_stdout out = StringIO.new $stdout = out yield return out.string ensure $stdout = STDOUT end |