simplify py.test.mark API,

add more plugin docs

--HG--
branch : 1.0.x
This commit is contained in:
holger krekel
2009-07-28 14:26:32 +02:00
parent 5b205e0711
commit dcf194ebb8
7 changed files with 198 additions and 54 deletions
+6 -2
View File
@@ -237,11 +237,15 @@ class/function names of a test function are put into the set
of keywords for a given test. You can specify additional
kewords like this::
@py.test.mark(webtest=True)
@py.test.mark.webtest
def test_send_http():
...
and then use those keywords to select tests.
and then use those keywords to select tests. See the `pytest_keyword`_
plugin for more information.
.. _`pytest_keyword`: plugin/keyword.html
disabling a test class
----------------------