I'm curious if i can mock out somehow the testing of a counter cache. Now I'm creating all the records to test the counter_cache. Is there any good practices to test counter cache effectively?

Edit: I'm just interested in testing that, the counter cache exists on a certain association.

link|improve this question

1  
why would you want to test counter_cache? you'd be testing a framework feature. there will be tests for that in the Rails test suite. Your tests should only cover your application, not the framework it builds on. – Matthias Jan 4 '11 at 10:20
Please see my update – dombesz Jan 4 '11 at 10:24
feedback

2 Answers

up vote 1 down vote accepted

When you add the :counter_cache option, ActiveRecord defines 2 callbacks (source code). You can use Mocha to check if the callback is executed.

instance.expects(:belongs_to_counter_cache_after_create_for_MODELNAME).returns(true)
link|improve this answer
That's a neat solution, I saw these dynamic methods, but I didn't realized that I can do this way. – dombesz Jan 4 '11 at 13:39
feedback

Add an entry, reload your object with counter_cache and check if it's increment.

link|improve this answer
that's what i'm doing, just wanted to know if I can avoid hitting the database. – dombesz Jan 4 '11 at 10:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.