##// END OF EJS Templates
Add some more tests...
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-----

File last commit:

r336:aa6cbde0 default
r336:aa6cbde0 default
Show More
test-pull
24 lines | 231 B | text/plain | TextLexer
#!/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