~ubuntu-branches/ubuntu/oneiric/python-distutils-extra/oneiric

« back to all changes in this revision

Viewing changes to test/auto.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt, Martin Pitt, Didier Roche
  • Date: 2010-11-03 22:37:27 UTC
  • Revision ID: james.westby@ubuntu.com-20101103223727-myfre6qawqa7ok9v
Tags: 2.22-3
[ Martin Pitt ]
* auto.py: Skip setup.py when calculating automatic requires, since
  modules from that script are just build dependencies. Thanks Michael
  Terry! (LP: #643655)
* python-mkdebian: Update python-mkdebian's generated copyright fields with
  latest names/values from http://dep.debian.net/deps/dep5/. Thanks Michael
  Terry!
* Rebuild against Python 2.7 in Ubuntu. (LP: #670188)

[ Didier Roche ]
* Return an error when can't update changelog (LP: #656950)
* Add --force-copyright to force copyright file to be recreated
  (LP: #656943)

Show diffs side-by-side

added added

removed removed

Lines of Context:
711
711
 
712
712
        # check requires
713
713
        req = [prop.split(' ', 1)[1] for prop in egg if prop.startswith('Requires: ')]
714
 
        self.assertEqual(set(req), set(['DistUtilsExtra.auto', 'httplib2', 'pkg_resources']))
 
714
        self.assertEqual(set(req), set(['httplib2', 'pkg_resources']))
715
715
 
716
716
    def test_help(self):
717
717
        '''Docbook XML help'''