Advertisement
Guest User

Untitled

a guest
Dec 21st, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. ERROR Unable to load file bad_file_name, exiting...
  2. F ERROR Unable to load file fixtures/invalid.yaml, exiting...
  3. F
  4.  
  5. Failures:
  6.  
  7. 1) MyModule::MyCli with incorrect filename should fail cleanly
  8. Failure/Error:
  9. expect do
  10. subject.format('bad_file_name')
  11. end.to raise_error(SystemExit).and output(' ERROR Unable to load file bad_file_name, exiting...').to_stdout
  12.  
  13. expected block to output " ERROR Unable to load file bad_file_name, exiting..." to stdout, but output nothing
  14. # ./spec/format_spec.rb:14:in `block (3 levels) in <module:MyModule>'
  15.  
  16. 2) MyModule::MyCli with incorrect filename should fail cleanly
  17. Failure/Error:
  18. expect do
  19. subject.format('fixtures/invalid.yaml')
  20. # end.to raise_error(SystemExit).and output(' ERROR Unable to load file fixtures/invalid.yaml, exiting...').to_stdout
  21. end.to output(' ERROR Unable to load file fixtures/invalid.yaml, exiting...').to_stdout.and raise_error(SystemExit)
  22.  
  23. expected block to output " ERROR Unable to load file fixtures/invalid.yaml, exiting..." to stdout, but output nothing
  24. # ./spec/format_spec.rb:22:in `block (3 levels) in <module:MyModule>'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement