Tagged Questions

60
votes
7answers
11k views

Practicing BDD with python

Which are the most advanced frameworks and tools there are available for python for practicing Behavior Driven Development? Especially finding similar tools as rspec and mocha for ruby would be great. ...
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", '>= ...
5
votes
2answers
403 views

Mocking with rspec and mocha together

For a test suite that's already using mocha for mocking, can new tests be written with rspec mocking? maybe turn that on before(:all) and turn it back to mocha after(:all) I tried changing the ...
5
votes
2answers
847 views

How do you test an AJAX request with RSpec/RoR?

I'm fairly new to RoR and recently started learning BDD/Rspec for testing my application. I've been looking for a way to spec an AJAX request, but so far I haven't found much documentation on this at ...
4
votes
3answers
716 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
1answer
138 views

stubbing helpers using mocha

it "should have edit button if user has permission to edit" do EntitiesHelper.stubs(:permission_to_edit_entity?).returns(true) get :index @entities[0..3].each do |entity| response.should ...
2
votes
1answer
64 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
267 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
1answer
413 views

Mocha expectation on association build call failing

I have this example: # GET New context "on get to new" do it "should assign cardset" do @profile.cardsets.expects(:build).once.returns(Factory.stub(:cardset)) get :new ...
2
votes
1answer
570 views

Stub with Rspec/Mocha in Cucumber scenarios

I am using Cucumber as the BDD framework with rspec/mocha mocking. Ideally we would not mock/stub behavior in cucumber specs; however the scenario is exceptional here. To give you the brief idea of ...
2
votes
1answer
274 views

Force controller to use current_user with mocking

I am trying to specify in my RSpec tests that my controller should use current_user.projects.find() instead of Project.find() I am using the Mocha mocking framework and was trying something like this: ...
1
vote
2answers
317 views

Rails Faking a Route

To be specific, I'm trying to get ActionController::Routing::Routes.recognize_path to recognize a route that is not in routes.rb, for testing purposes. Is it possible to somehow mock or dynamically ...
1
vote
2answers
571 views

RSpec on Controller and Stubbing

I am pretty new to using rspec and am trying to write my tests for my controllers. I have this controller (I am using mocha for stubbing): class CardsController < ApplicationController ...
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
20 views

How to properly mock eager loading

I am trying to test one of my controllers with rspec and mocha and I wan't to make sure that I am performing eager loading and I just cannot figure how to do it correctly. Here is the controller ...
0
votes
2answers
153 views

Using rspec the ensure logger is called

I am trying to test a controller in my rails app under a specific condition that should raise an error and log it. I got the raise test working great but I would like to make sure the logger gets ...
0
votes
1answer
69 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
438 views

mocha stubs with exception - rspec test not passing

Hey, I am trying to use Mocha and Rspec to test a scenario where a method always raises some exception. Here is the controller code I am trying to test: def add_parent begin parent = ...
0
votes
1answer
128 views

Factory.create fails in Put context but not Post context

I'm using factorygirl. I'm still new, in particular to the testing aspect of rails. When I descibe POST create I can create any number of Person objects without any issue. I don't actually need to ...
0
votes
2answers
364 views

Using mocha for controller in functional test with RSPEC

I'm doing some tests here using Rspec and I would like to assure that the controller is calling the log method in some actions. I'm also using mocha. I would like something like this: it "update ...
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
2answers
126 views

RSpec Google Contacts Connection

I'm trying to test out a controller action on Rails 2.3.10 that connect to Google to retrieve contacts. I'm using Rspec and Mocha for testing. I want to stub out the actual call to Google since this ...
0
votes
2answers
63 views

Why doesn't this test in the Diaspora app fail?

From http://github.com/diaspora/diaspora/blob/master/spec/models/profile_spec.rb describe Profile do before do @person = Factory.build(:person) end describe 'requirements' do it ...
0
votes
1answer
179 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
1answer
150 views

Expectation for find not working, but expectation for find_by_id is

I have this controller code: # GET /cardsets/1 def show @cardset = current_user.cardsets.find_by_id(params[:id]) end And this RSpec test code (mocking with Mocha): # GET Show context "on get to ...
0
votes
2answers
517 views

Variable Passing in Rails Controller Tests

I am doing some controller testing with RSpec and Mocha. Here is an example describe MenuItemsController, "creating a new menu item" do integrate_views fixtures :menu_items it "should redirect ...