improve release announcement, shift and fix examples a bit. Bump version to 2.2.0

This commit is contained in:
holger krekel
2011-11-18 18:32:11 +00:00
parent f7648e11d8
commit 6b4e6eee09
27 changed files with 424 additions and 364 deletions

View File

@@ -39,7 +39,7 @@ def pytest_configure(config):
config.addinivalue_line("markers",
"parametrize(argnames, argvalues): call a test function multiple "
"times passing in multiple different argument value sets. Example: "
"@parametrize(arg1, [1,2]) would lead to two calls of the decorated "
"@parametrize('arg1', [1,2]) would lead to two calls of the decorated "
"test function, one with arg1=1 and another with arg1=2."
)