tests/test-hgk.t
author Adrian Buehlmann <adrian@cadifra.com>
Sat, 15 Sep 2012 21:42:58 +0200
changeset 17573 fb8658ad9e8d
parent 16913 f2719b387380
child 17959 542d133ea0a3
permissions -rw-r--r--
store: eliminate unneded last assignment to n in _auxencode() The check for period or space at the end of the string is the last one, the local variable n is thus not used anymore.

Minimal hgk check

  $ echo "[extensions]" >> $HGRCPATH
  $ echo "hgk=" >> $HGRCPATH
  $ hg init repo
  $ cd repo
  $ echo a > a
  $ hg ci -Am adda
  adding a
  $ hg debug-cat-file commit 0
  tree a0c8bcbbb45c
  parent 000000000000
  author test 0 0
  committer test 0 0
  revision 0
  branch default
  
  adda

  $ cd ..