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