diff options
| author | Tom Christie | 2013-08-16 14:12:24 +0100 | 
|---|---|---|
| committer | Tom Christie | 2013-08-16 14:12:24 +0100 | 
| commit | c1ccd8b5b5aef1bd209862f9431c9c03e25ae755 (patch) | |
| tree | 1bfa78c86e422f81cf836319d91c626c763d5b24 | |
| parent | f6f69dc71d4db7492b5feecc69627dff0031e2b9 (diff) | |
| download | django-rest-framework-c1ccd8b5b5aef1bd209862f9431c9c03e25ae755.tar.bz2 | |
Update docs to include testing.
| -rw-r--r-- | docs/index.md | 2 | ||||
| -rw-r--r-- | docs/template.html | 1 | ||||
| -rwxr-xr-x | mkdocs.py | 1 | 
3 files changed, 4 insertions, 0 deletions
| diff --git a/docs/index.md b/docs/index.md index 99cd6b88..a0ae2984 100644 --- a/docs/index.md +++ b/docs/index.md @@ -164,6 +164,7 @@ The API guide is your complete reference manual to all the functionality provide  * [Returning URLs][reverse]  * [Exceptions][exceptions]  * [Status codes][status] +* [Testing][testing]  * [Settings][settings]  ## Topics @@ -288,6 +289,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  [reverse]: api-guide/reverse.md  [exceptions]: api-guide/exceptions.md  [status]: api-guide/status-codes.md +[testing]: api-guide/testing.md  [settings]: api-guide/settings.md  [documenting-your-api]: topics/documenting-your-api.md diff --git a/docs/template.html b/docs/template.html index 27bc1062..a20c8111 100644 --- a/docs/template.html +++ b/docs/template.html @@ -89,6 +89,7 @@                    <li><a href="{{ base_url }}/api-guide/reverse{{ suffix }}">Returning URLs</a></li>                    <li><a href="{{ base_url }}/api-guide/exceptions{{ suffix }}">Exceptions</a></li>                    <li><a href="{{ base_url }}/api-guide/status-codes{{ suffix }}">Status codes</a></li> +                  <li><a href="{{ base_url }}/api-guide/testing{{ suffix }}">Testing</a></li>                    <li><a href="{{ base_url }}/api-guide/settings{{ suffix }}">Settings</a></li>                  </ul>                </li> @@ -69,6 +69,7 @@ path_list = [      'api-guide/reverse.md',      'api-guide/exceptions.md',      'api-guide/status-codes.md', +    'api-guide/testing.md',      'api-guide/settings.md',      'topics/documenting-your-api.md',      'topics/ajax-csrf-cors.md', | 
