Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. [arup@to_do_app]$ rspec spec/list_spec.rb
  2. F
  3.  
  4. Failures:
  5.  
  6. 1) List#to_markdown converts the HTML file to GitHub markdown
  7. Failure/Error: expect(subject.to_markdown).to eq(result)
  8.  
  9. expected: " - [ ] Feed the cat\n - [x] Feed the cow\n - [ ] Feed the dog\n"
  10. got: " - [ ] Feed the cat\n - [x] Feed the cow\n - [ ] Feed the dog\n "
  11.  
  12. (compared using ==)
  13.  
  14. Diff:
  15. @@ -1,4 +1,5 @@
  16. - - [ ] Feed the cat
  17. - - [x] Feed the cow
  18. - - [ ] Feed the dog
  19. + - [ ] Feed the cat
  20. + - [x] Feed the cow
  21. + - [ ] Feed the dog
  22. +
  23. # ./spec/list_spec.rb:23:in `block (3 levels) in <top (required)>'
  24.  
  25. Finished in 0.16166 seconds (files took 0.69145 seconds to load)
  26. 1 example, 1 failure
  27.  
  28. Failed examples:
  29.  
  30. rspec ./spec/list_spec.rb:11 # List#to_markdown converts the HTML file to GitHub markdown
  31. [arup@to_do_app]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement