call site 0 for path.local.readlink
path/local/testing/test_posix.py - line 29
23
24
25
26
27
28
29
   def test_symlink_are_identical(self):
       tmpdir = self.tmpdir 
       filepath = tmpdir.join('file')
       filepath.write("Hello")
       linkpath = tmpdir.join('test')
       linkpath.mksymlinkto(filepath)
->     assert linkpath.readlink() == str(filepath)