tests/test-hgk.t
author Adrian Buehlmann <adrian@cadifra.com>
Tue, 18 Sep 2012 19:51:48 +0200
changeset 17608 776240123525
parent 16913 f2719b387380
child 17959 542d133ea0a3
permissions -rw-r--r--
store: extract functions _encodefname and _decodefname

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 ..