Beispiel #1
0
 def test_view_not_allowed(self):
     """
     We don't allow get requests
     """
     from airtelussd import index
     request = testing.DummyRequest()
     resp = index(request)
     self.assertTrue(isinstance(resp, HTTPMethodNotAllowed))
Beispiel #2
0
 def test_post_requires(self):
     """
     Test the index view function with the correct data.
     """
     from airtelussd import index
     request = testing.DummyRequest(
         post={'REQUESTNEW': True,
               'INPUT': '',
               'SESSIONID': '123455'})
     resp = index(request)
     self.assertTrue(isinstance(resp, Response))