Differences between revisions 1 and 11 (spanning 10 versions)
Revision 1 as of 2002-11-20 12:35:54
Size: 251
Editor: c-24-30-252-89
Comment:
Revision 11 as of 2010-01-20 10:44:45
Size: 317
Editor: 116
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Describe TestSoftware here. #!/usr/bin/env python
Line 3: Line 3:
Check out coverage.py, at http://www.garethrees.org. This module runs your code, then produces a report on how many statements were executed, and which ones were not. Use it to ensure your unit tests test everything. from distutils.core import setup

setup(name='sitemap_gen',
      version='1.4',
      description='Sitemap Generator',
      license='BSD',
      author='Google Inc.',
      author_email='opensource@google.com',
      url='http://sourceforge.net/projects/goog-sitemapgen/',
     )

from distutils.core import setup

setup(name='sitemap_gen',

  • )

TestSoftware (last edited 2011-08-30 19:04:15 by c-cf31e353)

Unable to edit the page? See the FrontPage for instructions.