To test rails/mongoid DB models until now, I used to have a real model with few data (3 .. 5), trying to cover every case for real.
I'm already testing outside in BDD with cucumber, but I usually stop earlier, using rspec very little and without fixture and mockup, prefearing real cases and printing the fields values with rails logger via Rails.logger.info
But now I fed up with that, when the models get more complicated, it's too overwhelming.
What's the best way to test mongoid models in rails with tdd/bdd ? Where can I start ?