view examples/project/zoo/test_doctest_modules.py @ 12:a6e52c3b64a8 tip

added a version code to nosedjango
author Victor Ng <victor@monkeybean.ca>
date Fri, 29 Aug 2008 14:10:47 -0400
parents 8d0793b2358b
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
    '''