summaryrefslogtreecommitdiff
path: root/tests/test-diffstat.t
diff options
context:
space:
mode:
authorLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 14:49:51 +0100
committerLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 14:49:51 +0100
commita498da43c7fdb9f24b73680c02a4a3588cc62d9a (patch)
treedaf8119dae1749b5165b68033a1b23a7375ce9ce /tests/test-diffstat.t
downloadmercurial-tarball-a498da43c7fdb9f24b73680c02a4a3588cc62d9a.tar.gz
Tarball conversion
Diffstat (limited to 'tests/test-diffstat.t')
-rw-r--r--tests/test-diffstat.t72
1 files changed, 72 insertions, 0 deletions
diff --git a/tests/test-diffstat.t b/tests/test-diffstat.t
new file mode 100644
index 0000000..5d03cdc
--- /dev/null
+++ b/tests/test-diffstat.t
@@ -0,0 +1,72 @@
+ $ hg init repo
+ $ cd repo
+ $ i=0; while [ "$i" -lt 213 ]; do echo a >> a; i=`expr $i + 1`; done
+ $ hg add a
+ $ cp a b
+ $ hg add b
+
+Wide diffstat:
+
+ $ hg diff --stat
+ a | 213 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ b | 213 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 2 files changed, 426 insertions(+), 0 deletions(-)
+
+diffstat width:
+
+ $ COLUMNS=24 hg diff --config ui.interactive=true --stat
+ a | 213 ++++++++++++++
+ b | 213 ++++++++++++++
+ 2 files changed, 426 insertions(+), 0 deletions(-)
+
+ $ hg ci -m adda
+
+ $ cat >> a <<EOF
+ > a
+ > a
+ > a
+ > EOF
+
+Narrow diffstat:
+
+ $ hg diff --stat
+ a | 3 +++
+ 1 files changed, 3 insertions(+), 0 deletions(-)
+
+ $ hg ci -m appenda
+
+ >>> open("c", "wb").write("\0")
+ $ touch d
+ $ hg add c d
+
+Binary diffstat:
+
+ $ hg diff --stat
+ c | Bin
+ 1 files changed, 0 insertions(+), 0 deletions(-)
+
+Binary git diffstat:
+
+ $ hg diff --stat --git
+ c | Bin
+ d | 0
+ 2 files changed, 0 insertions(+), 0 deletions(-)
+
+ $ hg ci -m createb
+
+ >>> open("file with spaces", "wb").write("\0")
+ $ hg add "file with spaces"
+
+Filename with spaces diffstat:
+
+ $ hg diff --stat
+ file with spaces | Bin
+ 1 files changed, 0 insertions(+), 0 deletions(-)
+
+Filename with spaces git diffstat:
+
+ $ hg diff --stat --git
+ file with spaces | Bin
+ 1 files changed, 0 insertions(+), 0 deletions(-)
+
+ $ cd ..