Web service voor het LED-display
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
684 B

'''Unit testing'''
import unittest
try:
from nose.tools import * # PEP8 asserts
except ImportError:
import sys
print('nose required. Run "pip install nose".')
from main import app
class Test{{cookiecutter.project_name}}(unittest.TestCase):
def setUp(self):
app.config['TESTING'] = True
self.app = app.test_client()
def test_add(self):
'''An example test.'''
assert_equal(1 + 1, 2)
def json_response(response, code=200):
'''Checks that the status code is OK and returns the json as a dict.'''
assert_equal(response.status_code, code)
return json.loads(response.data)
if __name__ == '__main__':
unittest.main()