annotate tests/test-remove @ 1071:8f0ac653f85e

Add support for extension modules This adds support for an [extensions] section to hgrc. This has the form of: [extensions] mod=[path] If a path is specified, the python module found at that path is load. Otherwise, __import__ is used to find the module. Each module must implement a dict called cmdtable where the command line options for that module live. Each module must also implement a reposetup function: cmdtable = {} def reposetup(ui, repo): pass Index: hg/mercurial/ui.py ===================================================================
author mason@suse.com
date Fri, 26 Aug 2005 14:05:52 -0700
parents b62d1e738fa9
children 6a104941d56a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
936
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
1 #!/bin/sh
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
2
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
3 hg init a
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
4 cd a
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
5 echo a > foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
6 hg add foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
7 hg commit -m 1 -d "0 0"
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
8 rm foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
9 hg remove foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
10 hg commit -m 2 -d "0 0"
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
11
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
12 cd ..
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
13 hg clone a b