summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/gis/testing.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/contrib/gis/testing.txt')
-rw-r--r--docs/ref/contrib/gis/testing.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ref/contrib/gis/testing.txt b/docs/ref/contrib/gis/testing.txt
index b2513f670b..2e81510cd9 100644
--- a/docs/ref/contrib/gis/testing.txt
+++ b/docs/ref/contrib/gis/testing.txt
@@ -6,7 +6,7 @@ Testing GeoDjango Apps
In Django 1.2, the addition of :ref:`spatial-backends`
simplified the process of testing GeoDjango applications. Specifically, testing
-GeoDjango applications is now the same as :ref:`topics-testing`.
+GeoDjango applications is now the same as :doc:`/topics/testing`.
Included in this documentation are some additional notes and settings
for :ref:`testing-postgis` and :ref:`testing-spatialite` users.
@@ -133,7 +133,7 @@ You will need to download the `initialization SQL`__ script for SpatiaLite::
If ``init_spatialite-2.3.sql`` is in the same path as your project's ``manage.py``,
then all you have to do is::
- $ python manage.py test
+ $ python manage.py test
Settings
--------
@@ -166,9 +166,9 @@ must be used. To use this runner, configure :setting:`TEST_RUNNER` as follows::
.. note::
- In order to create a spatial database, the :setting:`DATABASE_USER` setting
- (or :setting:`TEST_DATABASE_USER`, if optionally defined on Oracle) requires
- elevated privileges. When using PostGIS or MySQL, the database user
+ In order to create a spatial database, the :setting:`USER` setting
+ (or :setting:`TEST_USER`, if optionally defined on Oracle) requires
+ elevated privileges. When using PostGIS or MySQL, the database user
must have at least the ability to create databases. When testing on Oracle,
the user should be a superuser.