ruby-mocha Questions

1

I want to stub just a specific model, but not only a specific object and not every instance E.g. Given class 'Person' with attributes 'name' (string) and 'cool' (boolean). We have two models: pe...
Celtic asked 21/10, 2009 at 13:26

2

Assume this ruby code: class User def self.failed_login!(email) user = User.find_by_email(email) if user user.failed_login_count = user.failed_login_count + 1 user.save end end end I want...
Disagreement asked 27/5, 2009 at 5:9

© 2022 - 2024 — McMap. All rights reserved.