Tagged Questions

2
votes
1answer
55 views

Why can’t my Rails app find the gems that are packaged with it?

I've got a Rails app making use of Cucumber and RSpec. We are storing the gems under vendor/gems and trying to get the app building (running tests) in a CI server. When I try to run our tests I'm …
0
votes
1answer
31 views

Selenium screenshots using rspec

I am trying to capture screenshots on test failure using selenium-client and rspec. I run this command: $ spec my_spec.rb \ --require …
0
votes
2answers
27 views

RSpec View testing: How to modify params?

I am trying to test my views with RSpec. The particular view that is causing me troubles changes its appearance depending on a url parameter: link_to "sort>name", model_path(:sort_by => 'name') …
0
votes
1answer
18 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). Thanks
0
votes
2answers
27 views

How to fix a spec for stripping hml tags after adding javascript to a view in Rails?

Working on a request to add a pretty tooltip to a page (using jQuery tooltip plugin, as recommended by others on my team). Pretty tooltip is working fine, but two of the existing specs now fail, an …
0
votes
2answers
44 views

Should I mock my model in Rspec controller examples?

I am finding holes in my coverage because I have been mocking my models in controller examples. When I remove a model's method upon which a controller depends, I do not get a failure. Coming from …
0
votes
2answers
40 views

RSpec: Expecting a message multiple times but with differing parameters

I currently have some expectations set up on a mock with consecutive calls: The spec: @my_mock = mock("a_mock") @options1 = {:some => "option"} @options2 = {:some_other => "option"} …
0
votes
2answers
61 views

RSpec in Rails: How to skip a before_filter?

Hello everyone, I am trying to test my controller and maintain separation of concerns. The first concern is "Who is able to execute which action?" I am using authlogic for authentication and be9's …
5
votes
1answer
371 views

Silencing Factory Girl logging

Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my specs, every time …
2
votes
1answer
27 views

How thorough should you get with RSpec testing?

I'm just starting to grasp BDD and RSpec and one thing I'm really having trouble with is figuring out how thorough I should be with my testing. I'm just not understanding how fine-grained my testing …
0
votes
2answers
43 views

How to use rspec to test named routes?

Hi there, Given I have a named route: map.some_route '/some_routes/:id', :controller => 'some', :action => 'other' How do I use the routing spec file 'spec/routing/some_routing_spec.rb' to …
0
votes
1answer
21 views

Guidance on testing extremely long form with 20+ required fields, using Rspec / Cucumber

Hi all, Just wanted to get some opinions on how to go about testing an extremely long form with 20+ required fields. It seems like my Cucumber scenario could be like 25 lines long if I tried to …
0
votes
1answer
23 views

Controller specs in isolation mode and render :update

Hi folks, I am using RSpec for writing my controller tests/specs. I faced the problem, that the following code gets rendered: render :update do |page| page['middle_content'].replace_html :partial …
1
vote
2answers
45 views

How to test email sending using Rspec?

What are the best practices and tools to test email-sending using rspec with Rails? For instance, how do I test that an email has been sent or what should I test to have efficient testing and …
0
votes
3answers
22 views

RSpec setup for an application that depends on an external database from another application.

I've had to add features to an application that depends on a database from another application. I've been able to set up a connection to this external database and pull data from it. However, I'm not …

1 2 3 4 5 12 next
15 30 50 per page