コード例 #1
0
ファイル: test_service.py プロジェクト: vindir/salt
 def test_available(self):
     '''
     Test to returns ``True`` if the specified service is available,
     otherwise returns ``False``.
     '''
     with patch.object(service, 'get_all', return_value=['name', 'A']):
         self.assertTrue(service.available('name'))
コード例 #2
0
ファイル: test_service.py プロジェクト: zxstar/salt
 def test_available(self):
     """
     Test to returns ``True`` if the specified service is available,
     otherwise returns ``False``.
     """
     with patch.object(service, "get_all", return_value=["name", "A"]):
         self.assertTrue(service.available("name"))
コード例 #3
0
ファイル: service_test.py プロジェクト: DaveQB/salt
 def test_available(self):
     '''
     Test to returns ``True`` if the specified service is available,
     otherwise returns ``False``.
     '''
     with patch.object(service, 'get_all', return_value=['name', 'A']):
         self.assertTrue(service.available('name'))