summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorJurko Gospodnetić <jurko.gospodnetic@pke.hr>2014-01-18 12:31:33 +0100
committerJurko Gospodnetić <jurko.gospodnetic@pke.hr>2014-01-18 12:31:33 +0100
commit9fb2079458d39921913d3c8975f1ccc9ad914d88 (patch)
tree7f5284ec6c5856c5a3fb46708cfbed3d523641a2 /README.rst
parent83620ced2e847c0de721b0e78092bcd0677c9c4e (diff)
downloadpytest-9fb2079458d39921913d3c8975f1ccc9ad914d88.tar.gz
replace py.test module references with pytest
The only remaining 'py.test' references are: * those referring to the 'py.test' executable * those in code explicitly testing py.test/pytest module compatibility * those in old CHANGES documentation * those in documentation generated based on external data * those in seemingly unfinished & unmaintained Japanese documentation Minor stylistic changes and typo corrections made to documentation next to several applied py.test --> pytest content changes.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 1a444ebd1..c24af1d64 100644
--- a/README.rst
+++ b/README.rst
@@ -5,7 +5,7 @@ Changelog: http://pytest.org/latest/changelog.html
Issues: https://bitbucket.org/hpk42/pytest/issues?status=open
-The ``py.test`` testing tool makes it easy to write small tests, yet
+The ``pytest`` testing tool makes it easy to write small tests, yet
scales to support complex functional testing. It provides
- `auto-discovery
@@ -14,7 +14,7 @@ scales to support complex functional testing. It provides
- detailed info on failing `assert statements <http://pytest.org/latest/assert.html>`_ (no need to remember ``self.assert*`` names)
- `modular fixtures <http://pytest.org/latest/fixture.html>`_ for
managing small or parametrized long-lived test resources.
-- multi-paradigm support: you can use ``py.test`` to run test suites based
+- multi-paradigm support: you can use ``pytest`` to run test suites based
on `unittest <http://pytest.org/latest/unittest.html>`_ (or trial),
`nose <http://pytest.org/latest/nose.html>`_
- single-source compatibility to Python2.4 all the way up to Python3.3,