Exemplo n.º 1
0
 def test_client_init(self):
     c = http.HTTPClient('localhost:55672', 'guest', 'guest')
     self.assertIsInstance(c, http.HTTPClient)
Exemplo n.º 2
0
 def setUp(self):
     self.c = http.HTTPClient('localhost:55672', 'guest', 'guest')
Exemplo n.º 3
0
 def test_client_init_with_timeout(self):
     c = http.HTTPClient(self.testhost, self.testuser, self.testpass, 1)
     self.assertEqual(c.timeout, 1)
Exemplo n.º 4
0
 def test_client_init(self):
     c = http.HTTPClient(self.testhost, self.testuser, self.testpass)
     self.assertIsInstance(c, http.HTTPClient)
Exemplo n.º 5
0
 def setUp(self):
     self.c = http.HTTPClient(self.testhost, self.testuser, self.testpass)
Exemplo n.º 6
0
 def test_client_init_with_timeout(self):
     c = http.HTTPClient('localhost:55672', 'guest', 'guest', 1)
     self.assertEqual(c.client.timeout, 1)