aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_http_callback.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated oauth 2 pluginJessica Tallon2015-02-151-85/+0
|
* Fix another tests.Berker Peksag2014-08-071-1/+1
| | | | (forgot to commit earlier)
* Fix tests on Python 3.Berker Peksag2014-07-141-1/+1
|
* Use six.text_type instead of unicode().Berker Peksag2014-06-021-1/+3
| | | | I will be switch to use ``from __future__ import unicode_literals`` later.
* Fixes testsxray72242013-07-141-2/+2
|
* Reverting "Always activate testing in every test module ever."Christopher Allan Webber2013-05-171-3/+0
| | | | | | Revert "Always activate testing in every test module ever." This reverts commit 0536306048daa0970d2e43411ba2a9bf073e570e.
* Always activate testing in every test module ever.Christopher Allan Webber2013-05-161-0/+3
| | | | Kind of a dorky way to implement this, but...
* Moving the rest of the relevant tests to have test_app set up in "def ↵Christopher Allan Webber2013-04-181-14/+15
| | | | setup()" as well
* Switch test_app generation over to use py.test fixtures.Christopher Allan Webber2013-04-041-13/+14
| | | | | | | | | | | | By doing this, we can take advantage of py.test's ability to create temporary directories that are then cleaned up later during testing. This helps for sandboxing things. This also involves a ton of changes: - Changing the get_app stuff appropriately, getting rid of the setup_fresh_app decorator - Making said fixture - Switching over a billion tests to use it
* All mediagoblin tests now pass with py.test (switched setUp to setup)Christopher Allan Webber2013-04-031-2/+2
|
* Rename get_test_app to get_app.Elrond2013-01-181-2/+2
| | | | | | | nosetests runs everything that even vaguely looks like a test case... even our get_test_app. And as it is imported everywhere... it is run everywhere as a test case. Renaming it saves us about 10+ tests and a few seconds of time.
* Don't get a fresh app when not neededSebastian Spaeth2013-01-081-1/+1
| | | | | | | | These tests, don't need fresh databases, so don't discard and recreate the tables. This reduces test suite runtime on my laptop from 130 to 96 seconds. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* Make sqlalchemy stop complaining about non-unicode inputSebastian Spaeth2012-12-111-2/+2
| | | | | | | | | | | These tests output noisy sql complaints about receiving non-unicode for an unicode field. This was ... well ... because we were handing in non-unicode usernames and passwords. Prefixing usernames/passwords with u'' makes the testsuite less noisy and verbose. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* Fixed pylint issues, removed unused importJoar Wandborg2012-10-021-1/+1
|
* Replaced all request.POST with request.form, ...Joar Wandborg2012-09-291-8/+17
| | | | | - Fixed error handling in OAuth plugin - Changed request.POST file fields to request.files
* Added tests for HTTP callbacksJoar Wandborg2012-09-271-0/+72