test that tests get rewritten

This commit is contained in:
Benjamin Peterson 2011-05-26 20:06:11 -05:00
parent 16b4f54545
commit 971f34147a
1 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,10 @@ class TestAssert_reprcompare:
expl = ' '.join(callequal('foo', 'bar'))
assert 'raised in repr()' not in expl
@pytest.mark.skipif("config._assertstate.mode != 'on'")
def test_rewritten():
assert "@py_builtins" in globals()
def test_reprcompare_notin():
detail = plugin.pytest_assertrepr_compare('not in', 'foo', 'aaafoobbb')[1:]
assert detail == ["'foo' is contained here:", ' aaafoobbb', '? +++']