Cloud computing coursework:Saas 图片社交网站
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

19 righe
510 B

3 anni fa
  1. # -*- coding: utf-8 -*-
  2. from flask import current_app
  3. from tests.base import BaseTestCase
  4. class BasicTestCase(BaseTestCase):
  5. def test_app_exist(self):
  6. self.assertFalse(current_app is None)
  7. def test_app_is_testing(self):
  8. self.assertTrue(current_app.config['TESTING'])
  9. def test_404_error(self):
  10. response = self.client.get('/foo')
  11. data = response.get_data(as_text=True)
  12. self.assertEqual(response.status_code, 404)
  13. self.assertIn('404 Error', data)