tests/test-revert-unknown
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Wed, 12 Nov 2008 14:36:16 +0100
changeset 7354 cad454f295b0
parent 2982 890e285c52a1
permissions -rwxr-xr-x
patchbomb: extract a bunch of nested functions - clarifies dependencies on variables - extracts potentially useful utility functions - no need for separate confirm() function - error message style conformance - PEP 8 conformance

#!/bin/sh

hg init
touch unknown

touch a
hg add a
hg ci -m "1" -d "1000000 0"

touch b
hg add b
hg ci -m "2" -d "1000000 0"

echo %% Should show unknown
hg status
hg revert -r 0 --all
echo %% Should show unknown and b removed
hg status
echo %% Should show a and unknown
ls