コード例 #1
0
ファイル: test_bower.py プロジェクト: MalloZup/salt-2
 def test_uninstall_missing_package(self):
     '''
     Test if it returns False when package is not installed
     '''
     mock = MagicMock(return_value={'retcode': 0, 'stdout': '{}'})
     with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
         self.assertFalse(bower.uninstall('/path/to/project', 'underscore'))
コード例 #2
0
ファイル: test_bower.py プロジェクト: arizvisa/saltstack-salt
 def test_uninstall_missing_package(self):
     """
     Test if it returns False when package is not installed
     """
     mock = MagicMock(return_value={"retcode": 0, "stdout": "{}"})
     with patch.dict(bower.__salt__, {"cmd.run_all": mock}):
         self.assertFalse(bower.uninstall("/path/to/project", "underscore"))
コード例 #3
0
 def test_uninstall_existing_package(self):
     '''
     Test if it returns True when uninstall package succeeds
     '''
     mock = MagicMock(return_value={'retcode': 0,
                                    'stdout': '{"underscore": {}}'})
     with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
         self.assertTrue(bower.uninstall('/path/to/project', 'underscore'))
コード例 #4
0
ファイル: bower_test.py プロジェクト: DaveQB/salt
 def test_uninstall_missing_package(self):
     '''
     Test if it returns False when package is not installed
     '''
     mock = MagicMock(return_value={'retcode': 0,
                                    'stdout': '{}'})
     with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
         self.assertFalse(bower.uninstall('/path/to/project', 'underscore'))
コード例 #5
0
ファイル: bower_test.py プロジェクト: DaveQB/salt
 def test_uninstall_existing_package(self):
     '''
     Test if it returns True when uninstall package succeeds
     '''
     mock = MagicMock(return_value={'retcode': 0,
                                    'stdout': '{"underscore": {}}'})
     with patch.dict(bower.__salt__, {'cmd.run_all': mock}):
         self.assertTrue(bower.uninstall('/path/to/project', 'underscore'))
コード例 #6
0
ファイル: test_bower.py プロジェクト: arizvisa/saltstack-salt
 def test_uninstall_existing_package(self):
     """
     Test if it returns True when uninstall package succeeds
     """
     mock = MagicMock(return_value={
         "retcode": 0,
         "stdout": '{"underscore": {}}'
     })
     with patch.dict(bower.__salt__, {"cmd.run_all": mock}):
         self.assertTrue(bower.uninstall("/path/to/project", "underscore"))