- add Brianna (@pfctdayelise ) to changelog and contributors

- fix some broken tests on py32/py33 (related to issue308 merge)
- re-format docstrings
-
This commit is contained in:
holger krekel
2013-05-22 15:24:58 +02:00
parent bbc61c85ac
commit 8a0a18e9b3
5 changed files with 25 additions and 20 deletions

View File

@@ -578,8 +578,8 @@ class TestMetafuncFunctional:
])
@pytest.mark.issue308
class TestMarkersWithParametrization:
pytestmark = pytest.mark.issue308
def test_simple_mark(self, testdir):
s = """
import pytest
@@ -680,7 +680,7 @@ class TestMarkersWithParametrization:
@pytest.mark.parametrize(("n", "expected"), [
(1, 2),
pytest.mark.xfail("sys.version > 0")((1, 3)),
pytest.mark.xfail("True")((1, 3)),
(2, 3),
])
def test_increment(n, expected):
@@ -712,7 +712,7 @@ class TestMarkersWithParametrization:
@pytest.mark.parametrize(("n", "expected"), [
(1, 2),
pytest.mark.xfail("sys.version > 0", reason="some bug")((1, 3)),
pytest.mark.xfail("True", reason="some bug")((1, 3)),
(2, 3),
])
def test_increment(n, expected):