Tagged Questions

13
votes
1answer
1k views

Getting Rails 3 Generators with Rspec 2 and Mocha

I've followed all of the steps that I've been able to find online for configuring Rails 3 with Rspec 2 and Mocha. In my Gemfile: group :development do gem 'rails3-generators' gem "rspec", '>= ...
11
votes
4answers
536 views

Mocha Mock Carries To Another Test

I have been following the 15 TDD steps to create a Rails application guide - but have run into an issue I cannot seem to resolve. For the functional test of the WordsController, I have the following ...
6
votes
2answers
1k views

Is there a way to undo Mocha stubbing of any_instance in Test::Unit

Much like this question, I too am using Ryan Bates's nifty_scaffold. It has the desirable aspect of using Mocha's any_instance method to force an "invalid" state in model objects buried behind the ...
4
votes
2answers
97 views

Ruby on Rails: Best way to test a failed call to a third party API

I call a third party web service right now as part of my application. I am using the RestClient gem in order to do this. There are a ton of tools available to do the same thing, so that should not ...
4
votes
3answers
949 views

How to return a dynamic value from a Mocha mock in Ruby

The gist of my problem is as follows:- I'm writing a Mocha mock in Ruby for the method represented as "post_to_embassy" below. It is not really our concern, for the purpose of describing the problem, ...
4
votes
3answers
720 views

Is there a way to undo Mocha stubbing of any_instance?

Within my controller specs I am stubbing out valid? for some routing tests, (based on Ryan Bates nifty_scaffold) as follows :- it "create action should render new template when model is invalid" do ...
3
votes
2answers
122 views

Does a mocked method's code actually run

Hi I'm using Mocha for a Rails project. I'm new to TDD so please forgive me if this is a stupid question. If I have this @client.expects(:create_config).once.returns(true) then am I right in ...
2
votes
1answer
66 views

Is it possible to stub a method in a parent class so that all subclass instances are stubbed in rspec?

Given a parent class Fruit and its subclasses Apple and Banana, is it possible to stub the method foo defined in Fruit, so that any calls to method foo on any instances of Apple and Banana are ...
2
votes
2answers
75 views

How to mock Rails::configuration

I'm attempting to test a class which makes use of the rails configuration file. I'd like to mock Rails::configuration. I've tried things like ...
2
votes
2answers
271 views

Is there a “not_expects” for mocha/rspec?

I need to make sure a method is not called giving a specific set of conditions, and I'm looking for the opposite of the mocha expects.
2
votes
2answers
87 views

Is there a way to set the value of $? in a mock in Ruby?

I am testing some scripts that interface with system commands. Their logic depends on the return code of the system commands, i.e. the value of $?. So, as a simplified example, the script might say: ...
2
votes
1answer
265 views

Is there a Mocha equivalent of Rspec’s “mock().as_null_object”?

Is there a Mocha equivalent of Rspec’s “mock().as_null_object”?
2
votes
2answers
659 views

Stubbing Sinatra helper in Cucumber

I am currently struggling with stubbing out a helper method of my Sinatra app from within Cucumber. I have a Sinatra app with simple session authentication (by cookies) and I want to turn of ...
2
votes
1answer
2k views

Rails Test & Mocha: How to stub specific model - conditional any_instance?

I want to stub just a specific model, but not only a specific object and not every instance E.g. Given class 'Person' with attributes 'name' (string) and 'cool' (boolean). We have two models: ...
1
vote
4answers
109 views

Mocking/stubbing a method that's included from “instance.extend(DecoratorModule)”

I use a decorator module that get's included in a model instance (through the "extends" method). So for example : module Decorator def foo end end class Model < ActiveRecord::Base end class ...
1
vote
1answer
195 views

how to stub everything on an object using mocha

How to stub out all the methods on an object using mocha ? I tried object.stubs(:everything) stub_everything('class_name') Both of the above ways are not working.
1
vote
2answers
471 views

How to mock an instance method of an already mocked object?

I need to mock the following: Class User def facebook #returns an instance of a facebook gem end end So in my User tests, to access the User's facebook info I need to call ...
1
vote
1answer
383 views

Mocking an external API

I'm new to testing strategies and mocking, and I'm having a tough time figuring out how to mock a call to an external service. I'm sure it's something easy I'm missing, I just don't know what ...
1
vote
2answers
230 views

Mock methods that receives a block as parameter

I have a scenario more or less like this class A def initialize(&block) b = B.new(&block) end end I am unit testing class A and I want to know if B#new is receiving the block passed ...
1
vote
1answer
192 views

Mocking Sort With Mocha

How can I mock an array's sort expect a lambda expression? This is a trivial example of my problem: # initializing the data l = lambda { |a,b| a <=> b } array = [ 1, 2, 3, 4, 5 ] sorted_array ...
1
vote
1answer
940 views

Cannot load gem in IronRuby

I already removed all environment variables and ruby/ironruby directories and reinstalled it from scratch. And then I installed mocha through igem. Here are my outputs. $ ir IronRuby 0.9.1.0 on .NET ...
0
votes
0answers
19 views

rails 3.1 mocha loading order issue

we are migrating code from rails 2.3 to 3.1.3. we used mocha in our tests. mocha is failing after rails 3.1.1 due to the fact rails explicitly loads it. please read this post it can be fixed in 3.0 ...
0
votes
1answer
42 views

How to use mocha outside of unit tests?

I'm trying to use mocha outside of unit tests to mock an Net::HTTPResponse object. here is a simple example: #!/usr/bin/env ruby -w require 'net/http' require 'rubygems' require 'mocha' response = ...
0
votes
2answers
59 views

How do you mock a method like “each”?

I'm trying to test a method that uses CSV.foreach to read in a csv file and does some processing on it. It looks something like this: require 'csv' class Csv_processor def self.process_csv(file) ...
0
votes
1answer
40 views

Set expectation of method call while still calling original implementation

It appears as though setting any method-call expectation with Mocha prevent the original implementation from being called. This seems to cover calling the origina method with rspec. Is there a way ...
0
votes
0answers
32 views

How to assert block of a mock in mocha

This example is contrived, please don't take it verbatim as my code. I have the need to assert something like the following: def mymethod Dir.chdir('/tmp') do `ls` end end In the ...
0
votes
1answer
70 views

Global mock with mocha

I have many tests for my class. When I added check for file existence, in my class. I needed to add this code in all my cases. File.any_instance. expects(:exist?). with('test_file'). ...
0
votes
1answer
173 views

TDD with mocha and mongodb

I'm trying to add mongodb via Mongo Ruby Driver to my sinatra app, and I've decided to so it the right way. When I started to think about TDD I coudn't find any examples or guidance about how to do it ...
0
votes
1answer
275 views

Unstubbing a class method in Mocha

For a particular test, I want to change the return value of a class method. I can get the correct behavior by calling MyClass.expects(:method).returns(:myvalue). How can I stop this behavior once I'm ...
0
votes
1answer
53 views

getting the object passed as an argument to a stubbed method with Mocha

Foo.expects(:bar) Foo.bar(:abc => 123, :xyz => 987) # assert Foo.bar was called with a hash that has a key of :abc == 123 Basically I want to examine the object passed as an argument to a ...
0
votes
2answers
1k views

Ruby. Mocking in RSpec

I have a problem with mocking. I have class DistanceMatrix and I would like to indicate which method form_matrix was called in if/else statement. I need to use mocha and RSpec. Any ideas? class ...
0
votes
2answers
103 views

Test method that was called from other method

I have module Database with method generate_from_database that spins for loops and calls method get_length. How can I test if get_length was called n times, by using rspec or mocha? module Database ...
0
votes
1answer
119 views

Why am I getting a NoMethodError when I use Mocha 0.9.8 with Test::Unit 2.1.1

Has anyone seen this? Here's the error: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -rrubygems -e "require 'redgreen'" -I.:lib:test -rubygems -e "['test/unit', ...
0
votes
1answer
180 views

Testing two different expectations with mocking

I've recently just added Devise to my first Rails3 app, and I'm having a bit of trouble with the controller tests. I'm testing the User controller class, which is the same model that Devise uses. So ...
0
votes
2answers
290 views

Weird error when trying to test method with argument in Mocha. Is it a bug or is it me?

It's rather hard to find any documentation on Mocha, so I'm afraid I'm totally at sea here. I have found a problem with stubbing methods that pass arguments. So for instance if I set up a class like ...
0
votes
2answers
108 views

Testing methods called on yielded object

I have the following controller test case: def test_showplain Cleaner.expect(:parse).with(@somecontent) Cleaner.any_instance.stubs(:plainversion).returns(@returnvalue) post :showplain, ...
0
votes
2answers
190 views

mocha and nested objects

Excuse if this is a silly question, I am new to mocking. I am able to use mocha to do things like: person.expects(:first_name).returns('David') How can I mock a nested object? Say I have a ...
0
votes
1answer
633 views

Difference between RR mock.instance_of and Mocha any_instance

I have the following rspec code: require 'spec_helper' require 'mocha' require 'rr' describe ProjectsController, "creating a new project" do integrate_views it "should redirect to project with ...
0
votes
2answers
849 views

Mocha : How do you set up an expectation for an instance method?

Assume this ruby code: class User def self.failed_login!(email) user = User.find_by_email(email) if user user.failed_login_count = user.failed_login_count + 1 user.save end ...
0
votes
2answers
3k views

Returning mock objects from factory girl

I am using Mocha and Factory_girl in a JRuby rails application. When I call the factory I would like to return the objects with some mocking already done. Here is a code snippet of what I am trying ...