I'm currently try to push my limits a little bit with some of my unit testing -- trying to avoid saving ActiveRecord objects to the database and take advantage of mock/stub objects.<br><br>How far should I expect to get in this direction? From what I can tell, ActiveRecord seems to fight me when it comes to associations. In other words, many associations seem to require database queries.
<br><br>Have others had success in mocking/stubbing associations? In particular, have you had luck with has_many :through?<br><br>-David<br>