tests/test-context.py
author Martin Geisler <mg@lazybytes.net>
Mon, 04 May 2009 21:30:39 +0200
changeset 8296 908c5906091b
parent 6747 f6c00b17387c
child 9031 3b76321aa0de
permissions -rw-r--r--
util: remove md5 This hash function is broken and should not be used by new code. It is currently only used by keepalive.

import os
from mercurial import hg, ui

u = ui.ui()

repo = hg.repository(u, 'test1', create=1)
os.chdir('test1')

# create 'foo' with fixed time stamp
f = file('foo', 'w')
f.write('foo\n')
f.close()
os.utime('foo', (1000, 1000))

# add+commit 'foo'
repo.add(['foo'])
repo.commit(text='commit1', date="0 0")

print "workingfilectx.date =", repo[None]['foo'].date()