コード例 #1
0
 def test_updatedb(self):
     """
     Test if it updates the locate database
     """
     mock = MagicMock(return_value="")
     with patch.dict(locate.__salt__, {"cmd.run": mock}):
         self.assertListEqual(locate.updatedb(), [])
コード例 #2
0
ファイル: locate_test.py プロジェクト: DaveQB/salt
 def test_updatedb(self):
     '''
     Test if it updates the locate database
     '''
     mock = MagicMock(return_value='')
     with patch.dict(locate.__salt__, {'cmd.run': mock}):
         self.assertListEqual(locate.updatedb(), [])
コード例 #3
0
ファイル: test_locate.py プロジェクト: MalloZup/salt-2
 def test_updatedb(self):
     '''
     Test if it updates the locate database
     '''
     mock = MagicMock(return_value='')
     with patch.dict(locate.__salt__, {'cmd.run': mock}):
         self.assertListEqual(locate.updatedb(), [])