0

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

jdiaz
  • 7,354
  • 12
  • 42
  • 51

1 Answers1

1

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
  • 18,497
  • 6
  • 40
  • 40