Пример #1
0
 def test_file_dict(self):
     '''
     Test if it list the files that belong to a package
     '''
     mock = MagicMock(return_value='')
     with patch.dict(rpm.__salt__, {'cmd.run': mock}):
         self.assertDictEqual(rpm.file_dict('httpd'),
                              {'errors': [], 'packages': {}})
Пример #2
0
 def test_file_dict(self):
     '''
     Test if it list the files that belong to a package
     '''
     mock = MagicMock(return_value='')
     with patch.dict(rpm.__salt__, {'cmd.run': mock}):
         self.assertDictEqual(rpm.file_dict('httpd'), {
             'errors': [],
             'packages': {}
         })