##// END OF EJS Templates
ui: refactor option setting...
ui: refactor option setting No more passing options as constructor keywords. Basic options are now always stored in the overlay for simplicity and consistency.

File last commit:

r3736:ad3d5b43 default
r8136:6b5522cb default
Show More
test-basic
12 lines | 135 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
mkdir t
cd t
hg init
echo a > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m test -d "1000000 0"
mpm@selenic.com
Add a simple testing framework...
r331 hg history
Matt Mackall
make manifest friendlier...
r3736 hg manifest --debug
mpm@selenic.com
Add a simple testing framework...
r331 hg cat a
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 hg verify