Size: 251
Comment:
|
Size: 317
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',
- version='1.4', description='Sitemap Generator', license='BSD', author='Google Inc.',
author_email='opensource@google.com', url='http://sourceforge.net/projects/goog-sitemapgen/',
- )