예제 #1
0
파일: test.py 프로젝트: Trii/NoseGAE
def test_index():
    # fires off a task queue and should pass without exceptions
    response = app.get('/')
    assert 'Hello world!' in str(response)
예제 #2
0
파일: test.py 프로젝트: yoannmtr/NoseGAE
 def test_index(self):
     # this will call get_current_user()
     response = app.get('/')
     self.assertIn('*****@*****.**', response.body)
예제 #3
0
파일: test.py 프로젝트: Trii/NoseGAE
 def test_index(self):
     response = app.get('/')
     self.assertIn('Hello world!', response.body)
     self.assertEqual(response.status_int, 200)
예제 #4
0
def test_should_return_200_status():
    response = app.get("/helloworld")
    assert response.status_code == 200
예제 #5
0
def test_should_return_hello_world_body():
    response = app.get("/helloworld")
    assert b"Hello World!" in response.data
예제 #6
0
파일: test.py 프로젝트: yoannmtr/NoseGAE
def test_index():
    # fires off a task queue and should pass without exceptions
    response = app.get('/')
    assert 'Hello world!' in str(response)
예제 #7
0
파일: test.py 프로젝트: yoannmtr/NoseGAE
 def test_index(self):
     response = app.get('/')
     self.assertIn('Hello world!', response.body)
     self.assertEqual(response.status_int, 200)