view examples/project/zoo/test_doctest_modules.py @ 6:8d0793b2358b

update testapp to django 1.0b1
author Victor Ng <victor@monkeybean.ca>
date Thu, 28 Aug 2008 11:44:53 -0400
parents 22ae9aa457af
children
line wrap: on
line source


def test_regular_test_method():
    ''' This is just a stub for a regular test method'''
    pass

def test_docstring():
    '''
    This is a doctest that might get skipped

    >>> 5 + 5 
    10
    '''