예제 #1
0
파일: test_modjk.py 프로젝트: cldeluna/salt
 def test_reset_stats(self):
     '''
     Test for reset all runtime statistics for the load balancer
     '''
     with patch.object(modjk, '_do_http', return_value=
                       {'worker.result.type': 'OK'}):
         self.assertTrue(modjk.reset_stats('loadbalancer1'))
예제 #2
0
파일: modjk_test.py 프로젝트: DaveQB/salt
 def test_reset_stats(self):
     '''
     Test for reset all runtime statistics for the load balancer
     '''
     with patch.object(modjk, '_do_http', return_value=
                       {'worker.result.type': 'OK'}):
         self.assertTrue(modjk.reset_stats('loadbalancer1'))
예제 #3
0
def test_reset_stats():
    """
    Test for reset all runtime statistics for the load balancer
    """
    with patch.object(modjk,
                      "_do_http",
                      return_value={"worker.result.type": "OK"}):
        assert modjk.reset_stats("loadbalancer1")