Added unit test

This commit is contained in:
2016-07-29 17:43:58 +02:00
parent d30047c869
commit 06d64ec6df
4 changed files with 32 additions and 1 deletions

View File

@@ -1,8 +1,9 @@
from flask import Blueprint
from pillar_server.utils import jsonify
blueprint = Blueprint('attract', __name__)
@blueprint.route('/jemoeder')
def jemoeder():
return 'je moeder'
return jsonify({'je': 'moeder'})