Right now I have a subscriber controller that creates a subscriber but that is not what I want to test. I also have a method in the controller that add 1 to the visit attribute on the Subscriber(I'll post the code) that is the method I want to test but I'm not sure how? I'm new to rails and Rspec so I'm having trouble grasping the concepts. I'll post my test and controller for clarity.
CONTROLLER:
def search @subscriber = Subscriber.new end def visit @subscriber = Subscriber.find_by_phone_number(params[:phone_number]) if @subscriber @subscriber.visit =+ 1 @subscriber.save flash[:notice] = "thanks" redirect_to subscribers_search_path(:subscriber) else render "search" end end TEST
it "adds 1 to the visit attribute" do sign_in(user) subscriber = FactoryGirl.create(:subscriber) visits_before = subscriber.visit post :create, phone_number: subscriber.phone_number subscriber.reload expect(subscriber.visit).to eq(visits_before) end ERROR MESSAGE:
As you can see that is the method I want to test. The current test in place does not work but I thought it might help to show what I'm thinking. Hopefully this is enough info, let me know if you want to see anything else?
