1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

switch to django-feedutil for Git basic test, django-dbtemplates seems to be gone from github

This commit is contained in:
Carl Meyer 2009-07-03 19:55:19 -04:00
parent 6a80c9324b
commit 0840c52a76

View file

@ -43,14 +43,14 @@ Now, checking out from svn::
Cloning from Git::
>>> reset_env()
>>> result = run_pip('install', '-e', 'git://github.com/jezdez/django-dbtemplates.git#egg=django-dbtemplates', expect_error=True)
>>> egg_link = result.files_created[lib_py + 'site-packages/django-dbtemplates.egg-link']
>>> result = run_pip('install', '-e', 'git://github.com/jezdez/django-feedutil.git#egg=django-feedutil', expect_error=True)
>>> egg_link = result.files_created[lib_py + 'site-packages/django-feedutil.egg-link']
>>> # FIXME: I don't understand why there's a trailing . here:
>>> egg_link.bytes
'.../test-scratch/src/django-dbtemplates\n.'
'.../test-scratch/src/django-feedutil\n.'
>>> assert (lib_py + 'site-packages/easy-install.pth') in result.files_updated
>>> assert 'src/django-dbtemplates' in result.files_created
>>> assert 'src/django-dbtemplates/.git' in result.files_created
>>> assert 'src/django-feedutil' in result.files_created
>>> assert 'src/django-feedutil/.git' in result.files_created
Cloning from Mercurial::