Changeset 1062

Show
Ignore:
Timestamp:
03/28/08 08:47:19
Author:
seang
Message:

Add a test suite to the setup script

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • GeoJSON/trunk/README.txt

    r886 r1062  
    77  JSON. 
    88 
    9 * A working example of a class that satisfies the Python geo interface. 
     9* A working example of a class that provides the Python geo interface. 
    1010 
     11  http://trac.gispython.org/projects/PCL/wiki/PythonGeoInterface 
     12 
  • GeoJSON/trunk/setup.py

    r935 r1062  
    1818      packages          = ['geojson'], 
    1919      install_requires  = ['simplejson', 'setuptools'], 
     20      test_suite    = 'tests.test_suite', 
    2021      classifiers   = [ 
    2122        'Development Status :: 3 - Alpha', 
  • GeoJSON/trunk/tests/__init__.py

    r935 r1062  
    11# package 
     2from test_doctests import test_suite 
  • GeoJSON/trunk/tests/test_doctests.py

    r935 r1062  
    1010import os 
    1111 
    12 from zope.testing import doctest 
     12import doctest 
    1313 
    1414optionflags = (doctest.REPORT_ONLY_FIRST_FAILURE |