Exemplo n.º 1
0
 def test_gather(self):
     request = self.factory.post(self.gather_uri)
     self.assertEquals(
         gather(request).status_code,
         200,
     )
Exemplo n.º 2
0
 def test_gather(self):
     request = self.factory.post(self.gather_uri, HTTP_X_TWILIO_SIGNATURE=self.signature)
     self.assertEquals(gather(request).status_code, 200)
Exemplo n.º 3
0
 def test_gather(self):
     request = self.factory.post(self.gather_uri, HTTP_X_TWILIO_SIGNATURE=self.signature)
     self.assertEquals(gather(request).status_code, 200)
Exemplo n.º 4
0
 def test_gather(self):
     request = self.factory.post(self.gather_uri)
     self.assertEquals(
         gather(request).status_code,
         200,
     )