tests/test-diffstat.t
changeset 41401 4a33a6bf2b52
parent 41375 f1b0d9988825
child 41670 db69a763bc89
equal deleted inserted replaced
41400:4a409c19831f 41401:4a33a6bf2b52
   253    b |  1 +
   253    b |  1 +
   254    2 files changed, 1 insertions(+), 1 deletions(-)
   254    2 files changed, 1 insertions(+), 1 deletions(-)
   255   $ hg diff --stat --git
   255   $ hg diff --stat --git
   256    a => b |  0 
   256    a => b |  0 
   257    1 files changed, 0 insertions(+), 0 deletions(-)
   257    1 files changed, 0 insertions(+), 0 deletions(-)
       
   258 -- filename may contain whitespaces
       
   259   $ echo > c
       
   260   $ hg ci -Am 'add c'
       
   261   adding c
       
   262   $ hg mv c 'new c'
       
   263   $ hg diff --git
       
   264   diff --git a/c b/new c
       
   265   rename from c
       
   266   rename to new c
       
   267   $ hg diff --stat
       
   268    c     |  1 -
       
   269    new c |  1 +
       
   270    2 files changed, 1 insertions(+), 1 deletions(-)
       
   271   $ hg diff --stat --git
       
   272    c => new c |  0 
       
   273    1 files changed, 0 insertions(+), 0 deletions(-)