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