Exemple #1
0
    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")
Exemple #2
0
    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")
Exemple #3
0
 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")