Tagged Questions

RSpec is a Behaviour-Driven Development tool for Ruby programmers.

learn more… | top users | synonyms

68
votes
8answers
22k views

Getting Started with RSpec - Looking for tutorials

I'm looking to get started building a project and want to use RSpec from day one. My Ruby background is limited, however, I do have a good understanding of MVC and the structure within Ruby. In doing ...
67
votes
6answers
13k views

rspec vs cucumber (rspec stories)

When should I use specs for Rails application and when Cucumber (former rspec-stories)? I know how both work and actively use specs, of course. But it still feels weird to use Cucumber. My current ...
64
votes
7answers
7k views

iOS Tests/Specs TDD/BDD and Integration & Acceptance Testing

What are the best technologies to use for behavior-driven development on the iPhone? And what are some open source example projects that demonstrate sound use of these technologies? Here are some ...
59
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. ...
31
votes
4answers
5k views

When to use rspec let()?

I tend to use before blocks and set instance variables in then and use them across my examples, but recently I came upon let(). According to rspec docs, it is used to ... to define a memoized ...
31
votes
11answers
8k views

Why is RSpec so slow under Rails?

Whenever I run rspec tests for my Rails application it takes forever and a day of overhead before it actually starts running tests. Why is rspec so slow? Is there a way to speed up Rails' initial ...
30
votes
6answers
4k views

Cuke4Nuke or SpecFlow?

I am trying to decide if I should use Cuke4Nuke or SpecFlow. What are the pro/cons of each? Opinions on which is better and why. Thanks!
29
votes
10answers
19k views

How do you run a single test/spec file in RSpec?

I want to be able to run a single spec file's tests — for the one file I'm editing, for example. rake spec executes all the specs. My project is not a Rails project, so rake spec:doc doesn't ...
27
votes
2answers
7k views

How to use rspec's should_raise with any kind of exception?

I'd like to do something like this: some_method.should_raise <any kind of exception, I don't care> How should I do this? some_method.should_raise exception ... doesn't work.
24
votes
5answers
1k views

BDD with Cucumber and rspec - when is this redundant?

A Rails/tool specific version of: How deep are your unit tests? Right now, I currently write: Cucumber features (integration tests) - these test against the HTML/JS that is returned by our app, but ...
21
votes
2answers
3k views

Setup RSpec to test a gem (not Rails)

It is pretty easy with the added generator of rspec-rails to setup RSpec for testing a Rails application. But how about adding RSpec for testing a gem in development? I am not using jeweler or such ...
20
votes
9answers
3k views

Speeding up RSpec tests in a large Rails application

I have a Rails application with over 2,000 examples in my RSpec tests. Needless to say, it's a large application and there's a lot to be tested. Running these tests at this point is very inefficient ...
20
votes
1answer
3k views

Rspec: “array.should == another_array” but without concern for order

I often want to compare arrays and make sure that they contain the same elements, in any order. IS there a consise way to do this in RSpec? Here are methods that aren't acceptable: #to_set For ...
19
votes
5answers
1k views

Rails 3 RSpec 2 NetBeans integration

NetBeans 6.9 provides a custom Runner class for RSpec to be integrated into the IDE. I'm trying to get my Rails 3 applications specs to be correctly displayed inside NetBeans, but RSpec 2 seems no ...
15
votes
2answers
4k views

What is the difference between mock and mock_model in RSpec

I've recently came across different tutorials, where people use both mock and mock_model functions. In RSpec tutorial for controllers they use the mock_model function, but right in the documentation ...
15
votes
7answers
9k views

rspec: How to stub an instance method called by constructor?

class A def initialize @x = do_something end def do_something 42 end end How can I stub do_something in rspec, before the original implementation is called (thus assigning 42 to ...
15
votes
4answers
4k views

How would you test observers with rSpec in a Ruby on Rails application?

Suppose you have an ActiveRecord::Observer in one of your Ruby on Rails applications - how do you test this observer with rSpec?
14
votes
2answers
5k views

Stubbing Devise in rSpec and Rails3

How would you stub Devise in Rails 3 with rSpec. I have a UsersController and a User model. Both of which are associated with Devise at the moment, I'm writing controller specs and I really am having ...
13
votes
3answers
2k views

How do I write a Rails 3.1 engine controller test in rspec?

I have written a Rails 3.1 engine with the namespace Posts. Hence, my controllers are found in app/controllers/posts/, my models in app/models/posts, etc. I can test the models just fine. The spec for ...
13
votes
1answer
2k views

Rails: Good Rspec2 example usage? (Also: Cucumber, Pickle, Capybara)

I'm looking for a rather recent open source application that uses Rspec 2 as test library. I'd like to see how an experienced developer utilizes the library properly to test the full stack, since I'm ...
13
votes
4answers
3k views

Rspec, Rails: how to test private methods of controllers?

I have controller: class AccountController < ApplicationController def index end private def current_account @current_account ||= current_user.account end end How to test private ...
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", '>= ...
13
votes
5answers
3k views

What is the Path to Learn BDD on Ruby On Rails?

I want to start BDD on Ruby On Rails what should I learn? I don't know anything about BDD, RSpec or Cucumber. What is the best way to learn? Tutorials? Something that cover things like 'What behavior ...
12
votes
3answers
5k views

How to check for a JSON response using RSpec?

I have the following code in my controller: format.json { render :json => { :flashcard => @flashcard, :lesson => @lesson, :success => true } In my ...
12
votes
3answers
2k views

Testing modules in rspec

What are the best practices on testing modules in rspec? I have some modules that get included in few models and for now I simply have duplicate tests for each model (with few differences). Is there a ...
12
votes
4answers
1k views

Is Test::Unit still relevant in rails?

I am learning Rails the age old way. By reading Agile Web Development with Rails (3rd Edition) as a starting point. I am currently in the chapter that teaches Testing. I am also aware of other BDD ...
12
votes
3answers
1k views

Where do rspec tests for code under lib/ go?

I've got some code in the lib/ directory that don't really belong under controls, models or helpers. I'd like to write some rspec tests for this code, but am not sure where they should go under the ...
12
votes
12answers
9k views

Couldn't find 'rspec' generator

I'm trying to install RSpec as a gem after having it installed as a plugin. I've gone ahead and followed the directions found here http://github.com/dchelimsky/rspec-rails/wikis for the section ...
12
votes
4answers
1k views

RSpec Stories and Specs: When to use what?

So I want to start using RSpec stories, but I am not sure where writing controller, model and view specs fit in. For example, you have the story "Logging in" with "User provides wrong password" ...
12
votes
4answers
7k views

Rails, Restful Authentication & RSpec - How to test new models that require authentication

I've created a learning application using Bort, which is a base app that includes Restful Authentication and RSpec. I've got it up and running and added a new object that requires users to be logged ...
11
votes
4answers
818 views

Rails: How to set up MiniTest?

I'm a fairly novice tester, but have been trying to get better at TDD in Rails. RSpec works great, but my tests are pretty slow. I've heard that MiniTest is a lot faster, and the MiniTest/Spec DSL ...
11
votes
4answers
2k views

Rspec view testing with capybara and rails3

I really like the way RSpec is able to separate controller and view tests but have some problems with getting capybara matchers to work in a view test. What i basically try to achieve is sth like ...
11
votes
2answers
3k views

All Ruby tests raising: undefined method `authenticate' for nil:NilClass

Most of my tests are raising the following and I don't understand why. All methods call raise the 'authenticate' error. I've checked the code if there was a method called "authenticate" but there is ...
11
votes
5answers
2k views

How do I globally configure RSpec to keep the '--color' and '--format specdoc' options turned on

How do I set global configuration for RSpec in Ubuntu. Specifically so, --color and --format specdoc stay turned on, across all my projects (ie every time I run rspec anywhere).
11
votes
9answers
7k views

Session variables with Cucumber Stories

I am working on some Cucumber stories for a 'sign up' application which has a number of steps. Rather then writing a Huuuuuuuge story to cover all the steps at once, which would be bad, I'd rather ...
10
votes
2answers
227 views

How to write an RSpec for a Mail Interceptor?

I'm using a mail interceptor as follows: setup_mail.rb Mail.register_interceptor(MailInterceptor) if Rails.env != "production" class MailInterceptor class MailInterceptor def ...
10
votes
4answers
2k views

Rails 3.0.9 + Devise + Cucumber + Capybara the infamous “No route matches /users/sign_out”

I am using devise 1.4.2 with rails 3.0.9, cucumber-rails 1.0.2, capybara 1.0.0. I got No route matches "/users/sign_out" error when I clicked logout. I added :method => :delete to link_to tag after ...
10
votes
2answers
294 views

Rack::Test resulting in ActiveRecord::AssociationTypeMismatch

I have a problem when running all of my specs. ActiveRecord::AssociationTypeMismatch: Affiliate(#2154746360) expected, got Affiliate(#2199508660) It would appear that my models are ...
10
votes
3answers
1k views

Rspec: how to test file operations and file content

In my app I have such code: File.open "filename", "w" do |file| file.write("text") end I want to test this code via rspec. What is the best practices for doing this?
10
votes
2answers
2k views

Rspec won't run - Error: In `bin_path': can't find executable spec for rspec-2.0.0.beta.22 (Gem::Exception)

When I run spec from the command prompt on my rails app. $ spec spec I get the following error: /Library/Ruby/Site/1.8/rubygems.rb:335:in `bin_path': can't find executable spec for ...
10
votes
1answer
1k views

Faster RSpec with JRuby

I'm pretty new to the whole JRuby world. I'm using RSpec on a pretty big test suite. I'd like to be able to run the specs frequently but the JVM takes so long to startup it's becoming a real time ...
10
votes
2answers
17k views

“No such file to load” error when running Rspec

Mac OS 10.4 rspec (1.1.11, 1.1.4, 1.1.3, 0.5.15) rspec-rails (1.1.11) rspec_generator (0.5.15) rails 2.2.2 ruby 1.8.6 (2007-03-13 patchlevel 0) [universal-darwin8.0] Created a new project... $ ...
9
votes
1answer
2k views

Stubbing authentication in request spec

When writing a request spec, how do you set sessions and/or stub controller methods? I'm trying to stub out authentication in my integration tests - rspec/requests Here's an example of a test ...
9
votes
3answers
3k views

Good tutorial for RSpec With Rails 3

I am looking for a good free tutorial which implements RSpec with Rails 3. I have found many tutorials which work for Rails 2.x but leads you into issues when trying the same in Rails 3. Rspec Gem ...
9
votes
2answers
3k views

in 'require': no such file to load — spec_helper

Came across this error when trying out the ruby on rails tutorial section with rspec on a windows platform using jruby 1.6: c:\rails_projects\sample_app>bundle exec rspec spec/ ...
9
votes
3answers
1k views

How do I run only specific tests in Rspec?

I'm adding some Rspec tests for new methods on an object. I've just verified that all the existing tests still pass, and while I'm working on the new methods, I only want to run the tests that apply ...
9
votes
3answers
1k views

RSpec install error: “Could not find autotest in any of your source paths”

When I run: rails generate rspec:install I get this output: identical .rspec exist spec identical spec/spec_helper.rb Could not find "autotest" in any of your source paths. Your ...
9
votes
10answers
7k views

Why is Rspec saying “Failure/Error: Unable to find matching line from backtrace”?

I'm following the rails tutorial here: http://railstutorial.org/chapters/filling-in-the-layout#top When I run "rspec spec/", I get a bunch of errors that look like this: 1) LayoutLinks should have a ...
9
votes
2answers
2k views

Rails rspec set subdomain

I am using rSpec for testing my application. In my application controller I have a method like so: def set_current_account @current_account ||= Account.find_by_subdomain(request.subdomains.first) ...
9
votes
2answers
3k views

How to test instance variable was instantiated in controller with RSpec

I'm trying to check that a new action in my RESTful controller set up an instance variable of the required Object type. Seems pretty typical, but having trouble executing it Client Controller def ...

1 2 3 4 5 48