views:

273

answers:

1

Given a default pylons installation are there any examples available on the best practices for unit testing a CouchDB model?

+1  A: 

What are you using to interact with CouchDB? Are you using couchdb-python?

In any case, you would probably follow many of the conventions related to using something like unittest along with nose.

I would take a look at couchdb-python's tests as a good starting point.

Ryan Duffield