Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9139813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:26:10+00:00 2026-06-17T09:26:10+00:00

I have such problem. My test checks whether the Observer called, but does not

  • 0

I have such problem. My test checks whether the Observer called, but does not execute it.
My files:

todo_observer.rb:

class TodoObserver < ActiveRecord::Observer     
  def after_create(todo)
   todo.add_log('creating')
  end    
 end

todo.rb:

class Todo < ActiveRecord::Base
  attr_accessible :content, :done, :order

  validates :content, :presence => true,
            :length => {:minimum => 2}

  def add_log(event)
    Logdata.start_logging(self.content, event)
  end
end

logdata.rb

class Logdata < ActiveRecord::Base
  attr_accessible :modification, :event

  def self.start_logging(content, event)
    Logdata.create!(:modification => content, :event => event)
  end
end

todo_observer_spec.rb:

require 'spec_helper'

describe TodoObserver do

  before(:each) do
    @attr = { :modification => "Example", :event => 'Event' }
    @attr_todo = { :content => "Example", :done => :false }
  end

  describe 'after_create' do
    it "should create log about creating task" do
      count_log = Logdata.all.size
      todo = Todo.new(@attr_todo)
      todo.should_receive(:add_log).with('creating')
      todo.save!
      (Logdata.all.size).should eq(count_log + 1)
    end
  end

end

When I run test I get such error

Failure/Error: (Logdata.all.size).should eq(count_log + 1)

   expected: 1
        got: 0

Its mean, that observer called,but doesn’t create instance of Logdata. When I comment string(check the call)

todo.should_receive(:add_log).with(‘creating’)

My tests were successful.And accordingly its success when I comment string (Logdata.all.size).should eq(count_log + 1)and uncomment previous string.
How does the function should_receive to create an instance of the class Logdata?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:26:11+00:00Added an answer on June 17, 2026 at 9:26 am

    should_receive prevents the actual method from being called.

    You should create two separate tests. One to check that the log is added to the todo, and one to check that the log is created.

    describe 'after_create' do
      it "should add a log to the todo" do
        todo = Todo.new(@attr_todo)
        todo.should_receive(:add_log).with('creating')
        todo.save!
      end
    
      it "should create a new logdata" do
        todo = Todo.new(@attr_todo)
        expect {
          todo.save!
        }.to change {Logdata.count}.by(1)
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem such that i have zip files uploaded from forms and
I've a method test that does not have a clear assert expression. The returned
I have such problem: I'm using rails, devise gem and jQuery validation plugin. I
So, i have such problem: first time, then the <a> get clicked e.preventDefault() isn't
I have such a basic problem in Delphi,I can't solve it. My Code: Note:DataR
I have some problem whith such mysql_query INSERT INTO table VALUES ('', CURDATE()-1) why
I have some complicated, problem to be solved. Now I need to write such
I have a problem where I need to detect whether a given type is
I have a problem.... I made a java program that does the following: BufferedReader
I have a problem with writing a test case for my app. At first

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.