view tests/doctest.txt @ 7:111ffe84f66a

more stubbing
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 08 Jul 2011 10:59:25 -0700
parents 7ea2b5f12b2d
children 5905459d4ebe
line wrap: on
line source

Test carton
===========

The obligatory imports:

    >>> import carton

Make a temporary directory::

    >>> import tempfile
    >>> directory = tempfile.mkdtemp()

Run some tests::

    >>> 1 == 1
    True

Clean up::

    >>> import shutil
    >>> shutil.rmtree(directory)