Mercurial > public > mercurial-scm > hg-stable
diff tests/test-pull @ 336:aa6cbde09f72
Add some more tests
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Add some more tests
manifest hash: 0e357a0d32baee877f2c7b6c6a8f7468e4b7f1b5
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCr4TQywK+sNU5EO8RAoZ1AJ9lbLIN2uwLWpVOilQs9CkyFIaQ5wCeKToO
1HXJVrlhexgIzwSnBkTBNOo=
=UJ+y
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Tue, 14 Jun 2005 17:30:56 -0800 |
parents | |
children | b2293093b89e b4e0e20646bb |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-pull Tue Jun 14 17:30:56 2005 -0800 @@ -0,0 +1,24 @@ +#!/bin/bash + +set -e + +mkdir test +cd test +echo foo>foo +hg init +hg addremove +hg commit -t "1" +hg verify +hg serve 2>/dev/null & +C=$! +cd .. + +mkdir copy +cd copy +hg init http://localhost:8000/ +hg verify +hg co +cat foo +hg manifest + +kill $C