marcoagner / Flask-QRcode

A concise Flask extension to easily render QR codes on Jinja2 templates using python-qrcode.
https://marcoagner.github.io/Flask-QRcode/
GNU General Public License v3.0
110 stars 30 forks source link

Testing suite #15

Closed marcoagner closed 7 years ago

marcoagner commented 7 years ago

It must follow item 2. on http://flask.pocoo.org/docs/0.11/extensiondev/#approved-extensions:

  1. It must ship a testing suite that can either be invoked with make test or python setup.py test. For test suites invoked with make test the extension has to ensure that all dependencies for the test are installed automatically. If tests are invoked with python setup.py test, test dependencies can be specified in the setup.py file. The test suite also has to be part of the distribution.
1dot75cm commented 7 years ago

I completed a test suite in PR16. It may be not best, but work fine. @marcoagner

marcoagner commented 7 years ago

Thanks! Solved.