rename sorter to reprec (report-recorder)

--HG--
branch : trunk
This commit is contained in:
holger krekel
2009-05-21 14:33:09 +02:00
parent d4a28b1b2d
commit ec34e9423e
16 changed files with 116 additions and 116 deletions

View File

@@ -86,11 +86,11 @@ def test_setenv():
assert 'XYZ123' not in os.environ
def test_monkeypatch_plugin(testdir):
sorter = testdir.inline_runsource("""
reprec = testdir.inline_runsource("""
pytest_plugins = 'pytest_monkeypatch',
def test_method(monkeypatch):
assert monkeypatch.__class__.__name__ == "MonkeyPatch"
""")
res = sorter.countoutcomes()
res = reprec.countoutcomes()
assert tuple(res) == (1, 0, 0), res