================
A Simple DocTest
================

Doctests work by evaluating txt documents that look like python
interpreter sessions.  This test will pass:

  >>> 1+1
  2

The following test will not pass (that's why it is commented out):

#  >>> print 'apples and bananas'
#  oranges