RSpec is a behaviour-driven development (BDD) framework for the Ruby language.

learn more… | top users | synonyms

1
vote
0answers
24 views

Geocoding users' IPs

My Rails app geocodes users' IP when they are created and also when they update their data only if they change their city. The geocoding is slowing down my tests ridiculously. This seems to me to be ...
1
vote
0answers
57 views

Rspec test reuse code for before_filter and method

Consider following example (controller): ...