##// END OF EJS Templates
Remove unused imports
Remove unused imports

File last commit:

r6212:e75aab65 default
r6212:e75aab65 default
Show More
test-context.py
19 lines | 380 B | text/x-python | PythonLexer
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.workingctx().filectx('foo').date()