Tagged Questions

0
votes
2answers
93 views

Rails RSpec with Multiple Databases

I run a Rails app, and we're in the process of splitting out our signup process to a separate app. The signup app has its own separate database (for CMS and collecting prospects), but it also needs to …
0
votes
2answers
34 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 …
2
votes
1answer
23 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
1answer
6 views

How do I silence the following RightAWS messages when running tests

I'm using the RighAWS gem, and mocking at the http level so that the RightAWS code is being executed as part of my tests. When this happens I get the following output ....New RightAws::S3Interface …
0
votes
1answer
17 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
13 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
2answers
37 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
46 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 …
0
votes
1answer
26 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
3answers
20 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 …
0
votes
2answers
71 views

Rspec ‘should change’ with floating point

Is it possible to use RSpec .should(change(...)).by(...) with float numbers and set the compare precision like this: lambda { ...}.should change(unit, :price).by(12.151, 10e-5) Thanks,
2
votes
2answers
43 views

How can I validate exits and aborts in RSpec?

I am trying to spec behaviors for command line arguments my script receives to ensure that all validation passes. Some of my command line arguments will result in abort or exit being invoked because …
5
votes
1answer
364 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 …
1
vote
4answers
68 views

Ruby 1.9.1 with rspec “can’t modify frozen object”

I just updated to Ruby 1.9.1 and nearly all my rspec are broken giving me a "can't modify frozen object". Even the Rspec sample code from a generate rspec_controller fails. RuntimeError in …
0
votes
2answers
41 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 …

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