Browse Source

Move tests

pull/1165/head
Markus Unterwaditzer 10 years ago
parent
commit
3550b26071
  1. 5
      MANIFEST.in
  2. BIN
      flask/testsuite/test_apps/lib/python2.5/site-packages/SiteEgg.egg
  3. 3
      setup.py
  4. 0
      tests/__init__.py
  5. 0
      tests/appctx.py
  6. 0
      tests/basic.py
  7. 0
      tests/blueprints.py
  8. 0
      tests/config.py
  9. 0
      tests/deprecations.py
  10. 0
      tests/examples.py
  11. 0
      tests/ext.py
  12. 0
      tests/helpers.py
  13. 0
      tests/regression.py
  14. 0
      tests/reqctx.py
  15. 0
      tests/signals.py
  16. 0
      tests/static/config.json
  17. 0
      tests/static/index.html
  18. 0
      tests/subclassing.py
  19. 0
      tests/templates/_macro.html
  20. 0
      tests/templates/context_template.html
  21. 0
      tests/templates/escaping_template.html
  22. 0
      tests/templates/mail.txt
  23. 0
      tests/templates/nested/nested.txt
  24. 0
      tests/templates/simple_template.html
  25. 0
      tests/templates/template_filter.html
  26. 0
      tests/templates/template_test.html
  27. 0
      tests/templating.py
  28. 0
      tests/test_apps/blueprintapp/__init__.py
  29. 0
      tests/test_apps/blueprintapp/apps/__init__.py
  30. 0
      tests/test_apps/blueprintapp/apps/admin/__init__.py
  31. 0
      tests/test_apps/blueprintapp/apps/admin/static/css/test.css
  32. 0
      tests/test_apps/blueprintapp/apps/admin/static/test.txt
  33. 0
      tests/test_apps/blueprintapp/apps/admin/templates/admin/index.html
  34. 0
      tests/test_apps/blueprintapp/apps/frontend/__init__.py
  35. 0
      tests/test_apps/blueprintapp/apps/frontend/templates/frontend/index.html
  36. 0
      tests/test_apps/config_module_app.py
  37. 0
      tests/test_apps/config_package_app/__init__.py
  38. 0
      tests/test_apps/flask_broken/__init__.py
  39. 0
      tests/test_apps/flask_broken/b.py
  40. 0
      tests/test_apps/flask_newext_package/__init__.py
  41. 0
      tests/test_apps/flask_newext_package/submodule.py
  42. 0
      tests/test_apps/flask_newext_simple.py
  43. 0
      tests/test_apps/flaskext/__init__.py
  44. 0
      tests/test_apps/flaskext/oldext_package/__init__.py
  45. 0
      tests/test_apps/flaskext/oldext_package/submodule.py
  46. 0
      tests/test_apps/flaskext/oldext_simple.py
  47. 0
      tests/test_apps/importerror.py
  48. 0
      tests/test_apps/lib/python2.5/site-packages/site_app.py
  49. 0
      tests/test_apps/lib/python2.5/site-packages/site_package/__init__.py
  50. 0
      tests/test_apps/main_app.py
  51. 0
      tests/test_apps/path/installed_package/__init__.py
  52. 0
      tests/test_apps/subdomaintestmodule/__init__.py
  53. 0
      tests/test_apps/subdomaintestmodule/static/hello.txt
  54. 0
      tests/testing.py
  55. 0
      tests/views.py

5
MANIFEST.in

@ -1,4 +1,4 @@
include Makefile CHANGES LICENSE AUTHORS run-tests.py
include Makefile CHANGES LICENSE AUTHORS
recursive-include artwork *
recursive-include tests *
recursive-include examples *
@ -9,8 +9,5 @@ recursive-exclude tests *.pyc
recursive-exclude tests *.pyo
recursive-exclude examples *.pyc
recursive-exclude examples *.pyo
recursive-include flask/testsuite/static *
recursive-include flask/testsuite/templates *
recursive-include flask/testsuite/test_apps *
prune docs/_build
prune docs/_themes/.git

BIN
flask/testsuite/test_apps/lib/python2.5/site-packages/SiteEgg.egg

Binary file not shown.

3
setup.py

@ -117,6 +117,5 @@ setup(
[console_scripts]
flask=flask.cli:main
''',
cmdclass={'audit': run_audit},
test_suite='flask.testsuite.suite'
cmdclass={'audit': run_audit}
)

0
flask/testsuite/__init__.py → tests/__init__.py

0
flask/testsuite/appctx.py → tests/appctx.py

0
flask/testsuite/basic.py → tests/basic.py

0
flask/testsuite/blueprints.py → tests/blueprints.py

0
flask/testsuite/config.py → tests/config.py

0
flask/testsuite/deprecations.py → tests/deprecations.py

0
flask/testsuite/examples.py → tests/examples.py

0
flask/testsuite/ext.py → tests/ext.py

0
flask/testsuite/helpers.py → tests/helpers.py

0
flask/testsuite/regression.py → tests/regression.py

0
flask/testsuite/reqctx.py → tests/reqctx.py

0
flask/testsuite/signals.py → tests/signals.py

0
flask/testsuite/static/config.json → tests/static/config.json

0
flask/testsuite/static/index.html → tests/static/index.html

0
flask/testsuite/subclassing.py → tests/subclassing.py

0
flask/testsuite/templates/_macro.html → tests/templates/_macro.html

0
flask/testsuite/templates/context_template.html → tests/templates/context_template.html

0
flask/testsuite/templates/escaping_template.html → tests/templates/escaping_template.html

0
flask/testsuite/templates/mail.txt → tests/templates/mail.txt

0
flask/testsuite/templates/nested/nested.txt → tests/templates/nested/nested.txt

0
flask/testsuite/templates/simple_template.html → tests/templates/simple_template.html

0
flask/testsuite/templates/template_filter.html → tests/templates/template_filter.html

0
flask/testsuite/templates/template_test.html → tests/templates/template_test.html

0
flask/testsuite/templating.py → tests/templating.py

0
flask/testsuite/test_apps/blueprintapp/__init__.py → tests/test_apps/blueprintapp/__init__.py

0
flask/testsuite/test_apps/blueprintapp/apps/__init__.py → tests/test_apps/blueprintapp/apps/__init__.py

0
flask/testsuite/test_apps/blueprintapp/apps/admin/__init__.py → tests/test_apps/blueprintapp/apps/admin/__init__.py

0
flask/testsuite/test_apps/blueprintapp/apps/admin/static/css/test.css → tests/test_apps/blueprintapp/apps/admin/static/css/test.css

0
flask/testsuite/test_apps/blueprintapp/apps/admin/static/test.txt → tests/test_apps/blueprintapp/apps/admin/static/test.txt

0
flask/testsuite/test_apps/blueprintapp/apps/admin/templates/admin/index.html → tests/test_apps/blueprintapp/apps/admin/templates/admin/index.html

0
flask/testsuite/test_apps/blueprintapp/apps/frontend/__init__.py → tests/test_apps/blueprintapp/apps/frontend/__init__.py

0
flask/testsuite/test_apps/blueprintapp/apps/frontend/templates/frontend/index.html → tests/test_apps/blueprintapp/apps/frontend/templates/frontend/index.html

0
flask/testsuite/test_apps/config_module_app.py → tests/test_apps/config_module_app.py

0
flask/testsuite/test_apps/config_package_app/__init__.py → tests/test_apps/config_package_app/__init__.py

0
flask/testsuite/test_apps/flask_broken/__init__.py → tests/test_apps/flask_broken/__init__.py

0
flask/testsuite/test_apps/flask_broken/b.py → tests/test_apps/flask_broken/b.py

0
flask/testsuite/test_apps/flask_newext_package/__init__.py → tests/test_apps/flask_newext_package/__init__.py

0
flask/testsuite/test_apps/flask_newext_package/submodule.py → tests/test_apps/flask_newext_package/submodule.py

0
flask/testsuite/test_apps/flask_newext_simple.py → tests/test_apps/flask_newext_simple.py

0
flask/testsuite/test_apps/flaskext/__init__.py → tests/test_apps/flaskext/__init__.py

0
flask/testsuite/test_apps/flaskext/oldext_package/__init__.py → tests/test_apps/flaskext/oldext_package/__init__.py

0
flask/testsuite/test_apps/flaskext/oldext_package/submodule.py → tests/test_apps/flaskext/oldext_package/submodule.py

0
flask/testsuite/test_apps/flaskext/oldext_simple.py → tests/test_apps/flaskext/oldext_simple.py

0
flask/testsuite/test_apps/importerror.py → tests/test_apps/importerror.py

0
flask/testsuite/test_apps/lib/python2.5/site-packages/site_app.py → tests/test_apps/lib/python2.5/site-packages/site_app.py

0
flask/testsuite/test_apps/lib/python2.5/site-packages/site_package/__init__.py → tests/test_apps/lib/python2.5/site-packages/site_package/__init__.py

0
flask/testsuite/test_apps/main_app.py → tests/test_apps/main_app.py

0
flask/testsuite/test_apps/path/installed_package/__init__.py → tests/test_apps/path/installed_package/__init__.py

0
flask/testsuite/test_apps/subdomaintestmodule/__init__.py → tests/test_apps/subdomaintestmodule/__init__.py

0
flask/testsuite/test_apps/subdomaintestmodule/static/hello.txt → tests/test_apps/subdomaintestmodule/static/hello.txt

0
flask/testsuite/testing.py → tests/testing.py

0
flask/testsuite/views.py → tests/views.py

Loading…
Cancel
Save