##// END OF EJS Templates
zsh: allow 'hg clone' to complete paths listed in ~/.hgrc
zsh: allow 'hg clone' to complete paths listed in ~/.hgrc

File last commit:

r1408:5010207c default
r1486:d7809d6e default
Show More
test-symlinks
24 lines | 592 B | text/plain | TextLexer
Matthew Elder
symlink unit test
r1408 #!/bin/sh
#Test bug regarding symlinks that showed up in hg 0.7
#Author: Matthew Elder <sseses@gmail.com>
#make and initialize repo
hg init test; cd test;
#make a file and a symlink
touch foo; ln -s foo bar;
#import with addremove -- symlink walking should _not_ screwup.
hg addremove
#commit -- the symlink should _not_ appear added to dir state
hg commit -m 'initial'
#add a new file so hg will let me commit again
touch bomb
#again, symlink should _not_ show up on dir state
hg addremove
#Assert screamed here before, should go by without consequence
hg commit -m 'is there a bug?'