Guest User

Untitled

a guest
Feb 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. def no_stdout
  2. old_stdout = $stdout
  3. $stdout.reopen(File.open((PLATFORM =~ /mswin/ ? "NUL" : "/dev/null"), 'w'))
  4. yield
  5. $stdout = old_stdout
  6. end
  7.  
  8. def test_whatever
  9. no_stdout do
  10. puts 'no one will ever see this'
  11. end
  12. end
Add Comment
Please, Sign In to add comment