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

  • Home
  • SEARCH
  • 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 5838201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T11:26:34+00:00 2026-05-22T11:26:34+00:00

In a rails 3 app, I’m using mocha to do some mocking in my

  • 0

In a rails 3 app, I’m using mocha to do some mocking in my functional tests. However it doesn’t seem to mock a class method in the functional controller.

Controller code

class TagsController < ApplicationController
  respond_to :json

  def index
    response = User.tags_starting_with(params[:query])
    respond_with response
  end
end

Functional test

class TagsControllerTest < ActionController::TestCase
  context "index action with query" do
    setup do
      query = "A_QUERY"
       get :index, :query => query, :format => "json"
       @tags = ["these", "are", "test", "tags"]
       User.expects(:tags_starting_with).returns(@tags).once
     end

    should "return JSON formatted tags array" do
      tags = JSON::parse @response.body
      assert_equal @tags, tags
    end
  end
end

Gemfile

gem "mocha"

If I run this test, I keep running into

- expected exactly once, not yet invoked: User.tags_starting_with(any_parameters)

If I use rails console test I can mock a class method just fine, and it works as expected.

I’ve been through this post and have done the Gemfile, require "false" bit. But to no avail, it just doesn’t want to mock the class method of the User in the controller.

Other things I’ve tried, if I do User.tags_starting_with("bla") in the test itself, the expectation passes.

So any ideas on why the User in the controller isn’t being mocked correctly?

  • 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-05-22T11:26:34+00:00Added an answer on May 22, 2026 at 11:26 am

    As said on Twitter:
    You’re setting you your mock after you’re doing your request 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My Rails app uses the jquery.post() method to send some data from a clickable
My Rails app has some pages which are SSL-required and others which are SSL-optional.
My Rails app is generating this error whenever validation aren't met: undefined method `model_name'
Our Rails app is using Restful Authentication for user/session management and it seems that
Simple rails app using Postgres DB, getting 'integer out of range' error when trying
My Rails app is starting to need complicated queries. Should I just start using
We're building an app, our first using Rails 3, and we're having to build
I am building my rails app and using forem to integrate forum in it.
I have a rails app that is combining javascript assets using Jammit , and
I have a small rails app that is using acts_as_list to implement drag and

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.