def test_lgetxattr(self): '''lgetxattr() gets the value of an attribute set on the file.''' if self.user_xattr_are_supported(): _obnam.lsetxattr(self.filename, "user.hello", "world") self.assertEqual(_obnam.lgetxattr(self.filename, "user.hello"), "world")
def test_lgetxattr(self): '''lgetxattr() gets the value of an attribute set on the file.''' if self.user_xattr_are_supported(): _obnam.lsetxattr(self.filename, "user.hello", "world") self.assertEqual( _obnam.lgetxattr(self.filename, "user.hello"), "world")
def test_lgetxattr(self): '''lgetxattr() gets the value of an attribute set on the file.''' _obnam.lsetxattr(self.filename, "user.hello", "world") self.assertEqual(_obnam.lgetxattr(self.filename, "user.hello"), "world")