techvision/brails4

View on GitHub
test_results

Summary

Maintainability
Test Coverage
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

Failures:

  1) CommentsController behaves like Commentable GET #index populates an array of comments
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:16:in `block (4 levels) in <top (required)>'

  2) CommentsController behaves like Commentable GET #index renders the :index view
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:24:in `block (4 levels) in <top (required)>'

  3) CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:87:in `block (4 levels) in <top (required)>'

  4) CommentsController behaves like Commentable GET #edit renders the :edit template
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:94:in `block (4 levels) in <top (required)>'

  5) CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
     Failure/Error: expect { post :create, hash_key => commentable.id, comment: attrs}.to change(Comment,:count).by(1)
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:105:in `block (6 levels) in <top (required)>'
     # ./spec/controllers/commentable_spec.rb:105:in `block (5 levels) in <top (required)>'

  6) CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
     Failure/Error: post :create, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:111:in `block (5 levels) in <top (required)>'

  7) CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:120:in `block (5 levels) in <top (required)>'

  8) CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:127:in `block (5 levels) in <top (required)>'

  9) CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:134:in `block (5 levels) in <top (required)>'

  10) CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:206:in `block (5 levels) in <top (required)>'

  11) CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:212:in `block (5 levels) in <top (required)>'

  12) CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:220:in `block (5 levels) in <top (required)>'

  13) CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:226:in `block (5 levels) in <top (required)>'

  14) CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:36:in `block (5 levels) in <top (required)>'

  15) CommentsController behaves like Commentable GET #show when comment is found renders the :show template
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:45:in `block (5 levels) in <top (required)>'

  16) CommentsController behaves like Commentable GET #show when comment is not found shows an error message
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:55:in `block (5 levels) in <top (required)>'

  17) CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:63:in `block (5 levels) in <top (required)>'

  18) CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:87:in `block (4 levels) in <top (required)>'

  19) CommentsController behaves like Commentable GET #edit renders the :edit template
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:94:in `block (4 levels) in <top (required)>'

  20) CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:206:in `block (5 levels) in <top (required)>'

  21) CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:212:in `block (5 levels) in <top (required)>'

  22) CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:220:in `block (5 levels) in <top (required)>'

  23) CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:226:in `block (5 levels) in <top (required)>'

  24) CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
     Failure/Error: expect { post :create, hash_key => commentable.id, comment: attrs}.to change(Comment,:count).by(1)
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:105:in `block (6 levels) in <top (required)>'
     # ./spec/controllers/commentable_spec.rb:105:in `block (5 levels) in <top (required)>'

  25) CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
     Failure/Error: post :create, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:111:in `block (5 levels) in <top (required)>'

  26) CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:120:in `block (5 levels) in <top (required)>'

  27) CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:127:in `block (5 levels) in <top (required)>'

  28) CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:134:in `block (5 levels) in <top (required)>'

  29) CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:87:in `block (4 levels) in <top (required)>'

  30) CommentsController behaves like Commentable GET #edit renders the :edit template
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:94:in `block (4 levels) in <top (required)>'

  31) CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:72:in `block (4 levels) in <top (required)>'

  32) CommentsController behaves like Commentable GET #new renders the :new template
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:79:in `block (4 levels) in <top (required)>'

  33) CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:36:in `block (5 levels) in <top (required)>'

  34) CommentsController behaves like Commentable GET #show when comment is found renders the :show template
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:45:in `block (5 levels) in <top (required)>'

  35) CommentsController behaves like Commentable GET #show when comment is not found shows an error message
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:55:in `block (5 levels) in <top (required)>'

  36) CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:63:in `block (5 levels) in <top (required)>'

  37) CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:146:in `block (5 levels) in <top (required)>'

  38) CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:156:in `block (5 levels) in <top (required)>'

  39) CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:166:in `block (5 levels) in <top (required)>'

  40) CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:176:in `block (5 levels) in <top (required)>'

  41) CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:186:in `block (5 levels) in <top (required)>'

  42) CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:194:in `block (5 levels) in <top (required)>'

  43) CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:206:in `block (5 levels) in <top (required)>'

  44) CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:212:in `block (5 levels) in <top (required)>'

  45) CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:220:in `block (5 levels) in <top (required)>'

  46) CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:226:in `block (5 levels) in <top (required)>'

  47) CommentsController behaves like Commentable GET #index populates an array of comments
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:16:in `block (4 levels) in <top (required)>'

  48) CommentsController behaves like Commentable GET #index renders the :index view
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:24:in `block (4 levels) in <top (required)>'

  49) CommentsController behaves like Commentable GET #index populates an array of comments
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:16:in `block (4 levels) in <top (required)>'

  50) CommentsController behaves like Commentable GET #index renders the :index view
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:24:in `block (4 levels) in <top (required)>'

  51) CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:72:in `block (4 levels) in <top (required)>'

  52) CommentsController behaves like Commentable GET #new renders the :new template
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:79:in `block (4 levels) in <top (required)>'

  53) CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:36:in `block (5 levels) in <top (required)>'

  54) CommentsController behaves like Commentable GET #show when comment is found renders the :show template
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:45:in `block (5 levels) in <top (required)>'

  55) CommentsController behaves like Commentable GET #show when comment is not found shows an error message
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:55:in `block (5 levels) in <top (required)>'

  56) CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:63:in `block (5 levels) in <top (required)>'

  57) CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
     Failure/Error: expect { post :create, hash_key => commentable.id, comment: attrs}.to change(Comment,:count).by(1)
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:105:in `block (6 levels) in <top (required)>'
     # ./spec/controllers/commentable_spec.rb:105:in `block (5 levels) in <top (required)>'

  58) CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
     Failure/Error: post :create, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:111:in `block (5 levels) in <top (required)>'

  59) CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:120:in `block (5 levels) in <top (required)>'

  60) CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:127:in `block (5 levels) in <top (required)>'

  61) CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:134:in `block (5 levels) in <top (required)>'

  62) CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:146:in `block (5 levels) in <top (required)>'

  63) CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:156:in `block (5 levels) in <top (required)>'

  64) CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:166:in `block (5 levels) in <top (required)>'

  65) CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:176:in `block (5 levels) in <top (required)>'

  66) CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:186:in `block (5 levels) in <top (required)>'

  67) CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:194:in `block (5 levels) in <top (required)>'

  68) CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
     Failure/Error: expect { post :create, hash_key => commentable.id, comment: attrs}.to change(Comment,:count).by(1)
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:105:in `block (6 levels) in <top (required)>'
     # ./spec/controllers/commentable_spec.rb:105:in `block (5 levels) in <top (required)>'

  69) CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
     Failure/Error: post :create, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:111:in `block (5 levels) in <top (required)>'

  70) CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:120:in `block (5 levels) in <top (required)>'

  71) CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:127:in `block (5 levels) in <top (required)>'

  72) CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
     Failure/Error: post :create, comment: invalid_attrs, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'create' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:134:in `block (5 levels) in <top (required)>'

  73) CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:146:in `block (5 levels) in <top (required)>'

  74) CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:156:in `block (5 levels) in <top (required)>'

  75) CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:166:in `block (5 levels) in <top (required)>'

  76) CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:176:in `block (5 levels) in <top (required)>'

  77) CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:186:in `block (5 levels) in <top (required)>'

  78) CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:194:in `block (5 levels) in <top (required)>'

  79) CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:87:in `block (4 levels) in <top (required)>'

  80) CommentsController behaves like Commentable GET #edit renders the :edit template
     Failure/Error: get :edit, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'edit' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:94:in `block (4 levels) in <top (required)>'

  81) CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:36:in `block (5 levels) in <top (required)>'

  82) CommentsController behaves like Commentable GET #show when comment is found renders the :show template
     Failure/Error: get :show, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:45:in `block (5 levels) in <top (required)>'

  83) CommentsController behaves like Commentable GET #show when comment is not found shows an error message
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:55:in `block (5 levels) in <top (required)>'

  84) CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
     Failure/Error: get :show, id: "test_id", hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'show' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:63:in `block (5 levels) in <top (required)>'

  85) CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:72:in `block (4 levels) in <top (required)>'

  86) CommentsController behaves like Commentable GET #new renders the :new template
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:79:in `block (4 levels) in <top (required)>'

  87) CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:206:in `block (5 levels) in <top (required)>'

  88) CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
     Failure/Error: delete :destroy, id: comment.id, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:212:in `block (5 levels) in <top (required)>'

  89) CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:220:in `block (5 levels) in <top (required)>'

  90) CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
     Failure/Error: delete :destroy, hash_key => commentable.id, id: "test"
     AbstractController::ActionNotFound:
       The action 'destroy' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:226:in `block (5 levels) in <top (required)>'

  91) CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:72:in `block (4 levels) in <top (required)>'

  92) CommentsController behaves like Commentable GET #new renders the :new template
     Failure/Error: get :new, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'new' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:79:in `block (4 levels) in <top (required)>'

  93) CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:146:in `block (5 levels) in <top (required)>'

  94) CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:156:in `block (5 levels) in <top (required)>'

  95) CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:166:in `block (5 levels) in <top (required)>'

  96) CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:176:in `block (5 levels) in <top (required)>'

  97) CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:186:in `block (5 levels) in <top (required)>'

  98) CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
     Failure/Error: put :update, id: comment.id, hash_key => commentable.id, comment: attrs
     AbstractController::ActionNotFound:
       The action 'update' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:194:in `block (5 levels) in <top (required)>'

  99) CommentsController behaves like Commentable GET #index populates an array of comments
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:16:in `block (4 levels) in <top (required)>'

  100) CommentsController behaves like Commentable GET #index renders the :index view
     Failure/Error: get :index, hash_key => commentable.id
     AbstractController::ActionNotFound:
       The action 'index' could not be found for CommentsController
     Shared Example Group: "Commentable" called from ./spec/controllers/commentable_spec.rb:241
     # ./spec/controllers/commentable_spec.rb:24:in `block (4 levels) in <top (required)>'

Finished in 1.89 seconds
100 examples, 100 failures

Failed examples:

rspec ./spec/controllers/commentable_spec.rb:13 # CommentsController behaves like Commentable GET #index populates an array of comments
rspec ./spec/controllers/commentable_spec.rb:21 # CommentsController behaves like Commentable GET #index renders the :index view
rspec ./spec/controllers/commentable_spec.rb:86 # CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:93 # CommentsController behaves like Commentable GET #edit renders the :edit template
rspec ./spec/controllers/commentable_spec.rb:102 # CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:108 # CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:118 # CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:125 # CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
rspec ./spec/controllers/commentable_spec.rb:132 # CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:203 # CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
rspec ./spec/controllers/commentable_spec.rb:211 # CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:219 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
rspec ./spec/controllers/commentable_spec.rb:225 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
rspec ./spec/controllers/commentable_spec.rb:33 # CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:42 # CommentsController behaves like Commentable GET #show when comment is found renders the :show template
rspec ./spec/controllers/commentable_spec.rb:52 # CommentsController behaves like Commentable GET #show when comment is not found shows an error message
rspec ./spec/controllers/commentable_spec.rb:60 # CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
rspec ./spec/controllers/commentable_spec.rb:86 # CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:93 # CommentsController behaves like Commentable GET #edit renders the :edit template
rspec ./spec/controllers/commentable_spec.rb:203 # CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
rspec ./spec/controllers/commentable_spec.rb:211 # CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:219 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
rspec ./spec/controllers/commentable_spec.rb:225 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
rspec ./spec/controllers/commentable_spec.rb:102 # CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:108 # CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:118 # CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:125 # CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
rspec ./spec/controllers/commentable_spec.rb:132 # CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:86 # CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:93 # CommentsController behaves like Commentable GET #edit renders the :edit template
rspec ./spec/controllers/commentable_spec.rb:71 # CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:78 # CommentsController behaves like Commentable GET #new renders the :new template
rspec ./spec/controllers/commentable_spec.rb:33 # CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:42 # CommentsController behaves like Commentable GET #show when comment is found renders the :show template
rspec ./spec/controllers/commentable_spec.rb:52 # CommentsController behaves like Commentable GET #show when comment is not found shows an error message
rspec ./spec/controllers/commentable_spec.rb:60 # CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
rspec ./spec/controllers/commentable_spec.rb:143 # CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:153 # CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:163 # CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
rspec ./spec/controllers/commentable_spec.rb:173 # CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:183 # CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:191 # CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:203 # CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
rspec ./spec/controllers/commentable_spec.rb:211 # CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:219 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
rspec ./spec/controllers/commentable_spec.rb:225 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
rspec ./spec/controllers/commentable_spec.rb:13 # CommentsController behaves like Commentable GET #index populates an array of comments
rspec ./spec/controllers/commentable_spec.rb:21 # CommentsController behaves like Commentable GET #index renders the :index view
rspec ./spec/controllers/commentable_spec.rb:13 # CommentsController behaves like Commentable GET #index populates an array of comments
rspec ./spec/controllers/commentable_spec.rb:21 # CommentsController behaves like Commentable GET #index renders the :index view
rspec ./spec/controllers/commentable_spec.rb:71 # CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:78 # CommentsController behaves like Commentable GET #new renders the :new template
rspec ./spec/controllers/commentable_spec.rb:33 # CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:42 # CommentsController behaves like Commentable GET #show when comment is found renders the :show template
rspec ./spec/controllers/commentable_spec.rb:52 # CommentsController behaves like Commentable GET #show when comment is not found shows an error message
rspec ./spec/controllers/commentable_spec.rb:60 # CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
rspec ./spec/controllers/commentable_spec.rb:102 # CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:108 # CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:118 # CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:125 # CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
rspec ./spec/controllers/commentable_spec.rb:132 # CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:143 # CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:153 # CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:163 # CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
rspec ./spec/controllers/commentable_spec.rb:173 # CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:183 # CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:191 # CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:102 # CommentsController behaves like Commentable POST #create with valid attributes saves the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:108 # CommentsController behaves like Commentable POST #create with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:118 # CommentsController behaves like Commentable POST #create with invalid attributes doesn't save the new Comment in the database
rspec ./spec/controllers/commentable_spec.rb:125 # CommentsController behaves like Commentable POST #create with invalid attributes redirects to the :new view
rspec ./spec/controllers/commentable_spec.rb:132 # CommentsController behaves like Commentable POST #create with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:143 # CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:153 # CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:163 # CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
rspec ./spec/controllers/commentable_spec.rb:173 # CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:183 # CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:191 # CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:86 # CommentsController behaves like Commentable GET #edit assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:93 # CommentsController behaves like Commentable GET #edit renders the :edit template
rspec ./spec/controllers/commentable_spec.rb:33 # CommentsController behaves like Commentable GET #show when comment is found assigns the requested Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:42 # CommentsController behaves like Commentable GET #show when comment is found renders the :show template
rspec ./spec/controllers/commentable_spec.rb:52 # CommentsController behaves like Commentable GET #show when comment is not found shows an error message
rspec ./spec/controllers/commentable_spec.rb:60 # CommentsController behaves like Commentable GET #show when comment is not found redirects to index view
rspec ./spec/controllers/commentable_spec.rb:71 # CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:78 # CommentsController behaves like Commentable GET #new renders the :new template
rspec ./spec/controllers/commentable_spec.rb:203 # CommentsController behaves like Commentable DELETE #destroy when find the comment deletes the comment
rspec ./spec/controllers/commentable_spec.rb:211 # CommentsController behaves like Commentable DELETE #destroy when find the comment redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:219 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment shows an error message
rspec ./spec/controllers/commentable_spec.rb:225 # CommentsController behaves like Commentable DELETE #destroy when can not find the comment redirects to index view
rspec ./spec/controllers/commentable_spec.rb:71 # CommentsController behaves like Commentable GET #new assigns a new Comment to @comment
rspec ./spec/controllers/commentable_spec.rb:78 # CommentsController behaves like Commentable GET #new renders the :new template
rspec ./spec/controllers/commentable_spec.rb:143 # CommentsController behaves like Commentable PUT #update with valid attributes changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:153 # CommentsController behaves like Commentable PUT #update with valid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:163 # CommentsController behaves like Commentable PUT #update with valid attributes shows a success message
rspec ./spec/controllers/commentable_spec.rb:173 # CommentsController behaves like Commentable PUT #update with invalid attributes doesn't changes @comment attributes
rspec ./spec/controllers/commentable_spec.rb:183 # CommentsController behaves like Commentable PUT #update with invalid attributes redirects to the :index view
rspec ./spec/controllers/commentable_spec.rb:191 # CommentsController behaves like Commentable PUT #update with invalid attributes shows an error message
rspec ./spec/controllers/commentable_spec.rb:13 # CommentsController behaves like Commentable GET #index populates an array of comments
rspec ./spec/controllers/commentable_spec.rb:21 # CommentsController behaves like Commentable GET #index renders the :index view

Randomized with seed 64714