Tagged Questions

0
votes
2answers
52 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 …
1
vote
1answer
104 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 hav …
0
votes
2answers
94 views

Mocha + Cucumber to mock the Net response

The following is the app/models/websites.rb class Masterpiece < ActiveRecord::Base validates_presence_of :title, :link validates_uri_existence_of :link, :allow_redirect …
1
vote
1answer
34 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 IronR …
0
votes
0answers
35 views

Mocking website url thumbnailing feature in Rails?

Hi, I just started testing a new rails project, and I want a feature to webthumb the url into image. And now I want to test this feature. I'm trying to use the ThoughtBot family …
0
votes
1answer
147 views

Installing Mocha 0.9.7 in a Rails 2.3.3 project

I installed the Mocha 0.9.7 Rails plug-in using: $ script/plugin install git://github.com/floehopper/mocha.git (Just followed instruction in http://mocha.rubyforge.org/) Then, …
0
votes
1answer
59 views

Changing mocha default expects exactly once

I just started using mocha and I find it annoying that when creating a new mock object, mocha expects it to be called exactly once. I have helper methods to generate my mocks and I …
0
votes
1answer
116 views

MochaUI: ‘A is null’ when adding columns

I've just downloaded MochaUI, and I'm playing around trying to build an interface. I've successfully created windows, but I'm having trouble when it comes to layouts with columns. …
12
votes
4answers
2k 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 …
0
votes
2answers
124 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 …
0
votes
1answer
396 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 …