When trying to test using sqlite in-memory in ran into a problem:

- rake test raises an error on a test
- running the failing test alone works perfectly.

So what's the problem? here is the method giving the trouble:

def self.expiry_date_for(user)
  @expiry_date_cache ||= find_if_expiry_date_for(user)
end

That cached method is also called by another file, and therefore sets
the @expiry_date_cache to some value therefore not acting correctly.

So is my code flawed or is it the testing framework that doesn't clear
correctly the cached variable? In production, would my code work
correctly?
-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to