Consistent with the project code

Change-Id: If6c03de7ddfae749d8a87ae1e027291c522eb948
This commit is contained in:
caihui 2016-11-22 15:38:00 +08:00
parent cd3adce177
commit e5eee70138

View File

@ -68,29 +68,29 @@ Instead of running all tests, you can specify an individual directory, file,
class or method that contains test code, i.e. filter full names of tests by a
string.
To run the tests located only in the ``zaqar/tests/unit/queues/storage``
To run the tests located only in the ``zaqar/tests/unit/storage``
directory use:
.. code-block:: console
$ tox -e py27 zaqar.tests.unit.queues.storage
$ tox -e py27 zaqar.tests.unit.storage
To run the tests specific to the MongoDB driver in the
``zaqar/tests/unit/queues/storage/test_impl_mongodb.py`` file:
``zaqar/tests/unit/storage/test_impl_mongodb.py`` file:
.. code-block:: console
$ tox -e py27 test_impl_mongodb
To run the tests in the ``MongodbMessageTests`` class in
the ``tests/unit/queues/storage/test_impl_mongodb.py`` file:
the ``tests/unit/storage/test_impl_mongodb.py`` file:
.. code-block:: console
$ tox -e py27 test_impl_mongodb.MongodbMessageTests
To run the ``MongodbMessageTests.test_message_lifecycle`` test method in
the ``tests/unit/queues/storage/test_impl_mongodb.py`` file:
the ``tests/unit/storage/test_impl_mongodb.py`` file:
.. code-block:: console