mirror of
https://github.com/wassname/flask-bootstrap.git
synced 2026-06-27 16:10:14 +08:00
20 lines
266 B
Python
20 lines
266 B
Python
import os
|
|
import unittest
|
|
import tempfile
|
|
|
|
from app import app
|
|
|
|
|
|
class AppTestCase(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.app = app.test_client()
|
|
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|