Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 3.07 KB  |  hits: 3  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /usr/local/bin/ruby -S rspec ./spec/cells/articles_cell_spec.rb ./spec/controllers/meldd_controller_spec.rb ./spec/helpers/meldd_helper_spec.rb ./spec/models/article_spec.rb ./spec/models/meldd_spec.rb ./spec/views/layouts/application.html.haml_spec.rb ./spec/views/meldd/index.html.haml_spec.rb
  2.  
  3. ArticlesCell
  4.   cell rendering
  5.     rendering top
  6.       should When you call a matcher in an example without a String, like this:
  7.  
  8. specify { object.should matcher }
  9.  
  10. or this:
  11.  
  12. it { should matcher }
  13.  
  14. RSpec expects the matcher to have a #description method. You should either
  15. add a String to the example this matcher is being used in, or give it a
  16. description method. Then you won't have to suffer this lengthy warning again.
  17.       should When you call a matcher in an example without a String, like this:
  18.  
  19. specify { object.should matcher }
  20.  
  21. or this:
  22.  
  23. it { should matcher }
  24.  
  25. RSpec expects the matcher to have a #description method. You should either
  26. add a String to the example this matcher is being used in, or give it a
  27. description method. Then you won't have to suffer this lengthy warning again.
  28.     rendering new
  29.       should When you call a matcher in an example without a String, like this:
  30.  
  31. specify { object.should matcher }
  32.  
  33. or this:
  34.  
  35. it { should matcher }
  36.  
  37. RSpec expects the matcher to have a #description method. You should either
  38. add a String to the example this matcher is being used in, or give it a
  39. description method. Then you won't have to suffer this lengthy warning again.
  40.       should When you call a matcher in an example without a String, like this:
  41.  
  42. specify { object.should matcher }
  43.  
  44. or this:
  45.  
  46. it { should matcher }
  47.  
  48. RSpec expects the matcher to have a #description method. You should either
  49. add a String to the example this matcher is being used in, or give it a
  50. description method. Then you won't have to suffer this lengthy warning again.
  51.   cell instance
  52.     should respond to #top
  53.     should respond to #new
  54.  
  55. MelddController
  56.   GET 'index'
  57.     returns http success
  58.  
  59. MelddHelper
  60.   add some examples to (or delete) /Users/jeffdickey/src/rails/dojo_poc/spec/helpers/meldd_helper_spec.rb (PENDING: No reason given)
  61.  
  62. Article
  63.   starts with blank attributes
  64.  
  65. Meldd
  66.   has no entries when created
  67.   #new_article
  68.     returns a new article
  69.     must have an ID higher than the previously-existing article count
  70.     sets the new article's Meldd reference to itself
  71.   #add_entry
  72.     adds the entry to the meldd
  73.  
  74. layouts/application
  75.   it renders the HTML page header, including the
  76.     expected META tags
  77.     page title
  78.     stylesheet links
  79.     JavaScript links
  80.   it renders the HTML page body, including the
  81.     BODY element itself
  82.     navbar fixed to the top of the page, with expected content
  83.  
  84. meldd/index
  85.   renders the banner area properly, with trailing clearfix
  86.  
  87. Pending:
  88.   MelddHelper add some examples to (or delete) /Users/jeffdickey/src/rails/dojo_poc/spec/helpers/meldd_helper_spec.rb
  89.     # No reason given
  90.     # ./spec/helpers/meldd_helper_spec.rb:14
  91.  
  92. Finished in 0.13818 seconds
  93. 21 examples, 0 failures, 1 pending
  94. Coverage report generated for RSpec to /Users/jeffdickey/src/rails/dojo_poc/coverage. 38 / 38 LOC (100.0%) covered.