[SQL-CVS] r4577 - SQLObject/trunk/docs
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2013-02-03 11:17:14
|
Author: phd Date: Sun Feb 3 04:17:07 2013 New Revision: 4577 Log: Merged revision 4575 from branch 1.2: CodeSpeak.net has stopped hosting code Modified: SQLObject/trunk/docs/DeveloperGuide.txt SQLObject/trunk/docs/links.txt Modified: SQLObject/trunk/docs/DeveloperGuide.txt ============================================================================== --- SQLObject/trunk/docs/DeveloperGuide.txt Sun Feb 3 04:16:36 2013 (r4576) +++ SQLObject/trunk/docs/DeveloperGuide.txt Sun Feb 3 04:17:07 2013 (r4577) @@ -144,12 +144,11 @@ Tests are important. Tests keep everything from falling apart. All new additions should have tests. -Testing uses `py.test`__, an alternative to ``unittest``. It is -available via subversion at http://codespeak.net/svn/py/dist. Read -its `getting started`_ document for more. +Testing uses py.test, an alternative to ``unittest``. It is available at +http://pytest.org/ and http://pypi.python.org/pypi/pytest. Read its `getting +started`_ document for more. -.. __: http://codespeak.net/py/current/doc/test.html -.. _getting started: http://codespeak.net/py/dist/test.html#starting-point-py-test-command-line-tool +.. _getting started: http://pytest.org/latest/getting-started.html To actually run the test, you have to give it a database to connect to. You do so with the option ``-D``. You can either give a complete URI or @@ -175,7 +174,7 @@ ``inserts`` function that can create instances for you, and a couple miscellaneous functions. -.. _raises: http://codespeak.net/py/current/doc/test.html#id4 +.. _raises: http://pytest.org/latest/assert.html#assertions-about-expected-exceptions If you submit a patch or implement a feature without a test, I'll be Modified: SQLObject/trunk/docs/links.txt ============================================================================== --- SQLObject/trunk/docs/links.txt Sun Feb 3 04:16:36 2013 (r4576) +++ SQLObject/trunk/docs/links.txt Sun Feb 3 04:17:07 2013 (r4577) @@ -29,9 +29,6 @@ Open Source Projects -------------------- -* `sqlos Zope 3 SQLObject integration - <http://codespeak.net/z3/sqlos/>`_. - * `TurboGears <http://turbogears.org/>`_ Web Framework: also integrates with SQLObject. |