call site 0 for path.local.computehash
path/local/testing/test_local.py - line 32
27
28
29
30
31
32
33
34
   def test_gethash(self):
       import md5
       import sha
       fn = self.tmpdir.join("testhashfile")
       fn.write("hello")
->     assert fn.computehash("md5") == md5.md5("hello").hexdigest()
       assert fn.computehash("sha") == sha.sha("hello").hexdigest()
       py.test.raises(ValueError, fn.computehash, "asdasd")