Exemplo n.º 1
0
 def test_services(self):
     '''
     Test Riak Service List
     '''
     with patch.object(riak,
                       '__execute_cmd',
                       return_value={'stdout': '[a,b,c]'}):
         self.assertEqual(riak.services(), ['a', 'b', 'c'])
Exemplo n.º 2
0
 def test_services(self):
     """
     Test Riak Service List
     """
     with patch.object(riak,
                       "__execute_cmd",
                       return_value={"stdout": "[a,b,c]"}):
         self.assertEqual(riak.services(), ["a", "b", "c"])
Exemplo n.º 3
0
 def test_services(self):
     '''
     Test Riak Service List
     '''
     with patch.object(riak, '__execute_cmd', return_value={'stdout': '[a,b,c]'}):
         self.assertEqual(riak.services(), ['a', 'b', 'c'])