diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-17 10:20:46 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-24 16:52:48 -0700 |
commit | dfd3f561af07e5108317992f6ae836858e3cd0bf (patch) | |
tree | 86c8fd61c982bba1f2071bc7da2178a04056d750 /mediagoblin/tests/test_basic_auth.py | |
parent | f644293ea8768b82391394388067678c8e70ea0a (diff) | |
download | mediagoblin-dfd3f561af07e5108317992f6ae836858e3cd0bf.tar.lz mediagoblin-dfd3f561af07e5108317992f6ae836858e3cd0bf.tar.xz mediagoblin-dfd3f561af07e5108317992f6ae836858e3cd0bf.zip |
added tests for no_auth feature
Diffstat (limited to 'mediagoblin/tests/test_basic_auth.py')
-rw-r--r-- | mediagoblin/tests/test_basic_auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/tests/test_basic_auth.py b/mediagoblin/tests/test_basic_auth.py index 20098ab7..a985c315 100644 --- a/mediagoblin/tests/test_basic_auth.py +++ b/mediagoblin/tests/test_basic_auth.py @@ -72,15 +72,15 @@ def context_modified_app(request): return get_app( request, mgoblin_config=pkg_resources.resource_filename( - 'mediagoblin.tests', 'basic_auth_appconfig.ini')) + 'mediagoblin.tests.auth_configs', 'basic_auth_appconfig.ini')) def test_fp_view(context_modified_app): ### Oops, forgot the password - # ------------------- ## Register a user fixture_add_user(active_user=True) + # ------------------- template.clear_test_template_context() response = context_modified_app.post( '/auth/forgot_password/', |