--- a/tests/test-context.py Wed Dec 31 13:48:55 2014 -0800
+++ b/tests/test-context.py Wed Dec 31 17:55:43 2014 +0900
@@ -83,9 +83,16 @@
wctx = repo[None]
print 'wctx._status=%s' % (str(wctx._status))
+print '=== with "pattern match":'
print actx1.status(other=wctx,
match=scmutil.matchfiles(repo, ['bar-m', 'foo']))
print 'wctx._status=%s' % (str(wctx._status))
print actx2.status(other=wctx,
match=scmutil.matchfiles(repo, ['bar-m', 'foo']))
print 'wctx._status=%s' % (str(wctx._status))
+
+print '=== with "always match" and "listclean=True":'
+print actx1.status(other=wctx, listclean=True)
+print 'wctx._status=%s' % (str(wctx._status))
+print actx2.status(other=wctx, listclean=True)
+print 'wctx._status=%s' % (str(wctx._status))