tests/test-hgk.t
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Mon, 08 Oct 2012 17:08:52 +0200
changeset 18003 e1e181a64de7
parent 17959 542d133ea0a3
child 18807 cf72fd8b3072
permissions -rw-r--r--
clfilter: verify logic should be unfiltered To verify a changelog obviously needs all of it. The verify logic now ensures it works on an unfiltered repository.

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
  revision 0
  branch default
  
  adda

  $ cd ..