view examples/project/zoo/test_doctest_modules.py @ 5:22ae9aa457af

excercise more bits of the django 1.0b1 test framework
author Victor Ng <victor@monkeybean.ca>
date Thu, 28 Aug 2008 11:29:21 -0400
parents
children 8d0793b2358b
line wrap: on
line source


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

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

    >>> 5 + 5 
    10
    '''