From ed44689670e19d26dc38d30c186f7dafadac78a7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jonne=20Ha=C3=9F?= <me@jhass.eu>
Date: Fri, 27 Feb 2015 16:36:45 +0100
Subject: [PATCH] Fix a spec for LikesController

---
 spec/controllers/likes_controller_spec.rb | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/spec/controllers/likes_controller_spec.rb b/spec/controllers/likes_controller_spec.rb
index 406116a1cd..725c7f1a82 100644
--- a/spec/controllers/likes_controller_spec.rb
+++ b/spec/controllers/likes_controller_spec.rb
@@ -74,9 +74,14 @@ describe LikesController, :type => :controller do
         end
 
         context "when an the exception is raised" do
+          before do
+            @target = alice.post :status_message, :text => "AWESOME", :to => @alices_aspect.id
+            @target = alice.comment!(@target, "hey") if class_const == Comment
+          end
+
           it "should be catched when it means that the target is not found" do
-            allow(@target).to receive(:id).and_return(-1)
-            post :create, like_hash.merge(:format => :json)
+            params = like_hash.merge(format: :json, id_field => -1)
+            post :create, params
             expect(response.code).to eq('422')
           end
 
-- 
GitLab