tests/test-hgk.t
author Patrick Mezard <patrick@mezard.eu>
Mon, 20 Aug 2012 22:36:51 +0200
changeset 17466 d5a3bda6e170
parent 16913 f2719b387380
child 17959 542d133ea0a3
permissions -rw-r--r--
killdaemons: take file argument explicitely It makes it easier to use as a generic replacement for kill utility, mostly for Windows tests.

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