Fix CHANGELOG merge conflicts.

This commit is contained in:
Kale Kundert
2016-03-14 11:55:50 -07:00
4 changed files with 32 additions and 6 deletions

View File

@@ -2691,3 +2691,14 @@ class TestContextManagerFixtureFuncs:
*def arg1*
""")
def test_custom_name(self, testdir):
testdir.makepyfile("""
import pytest
@pytest.fixture(name='meow')
def arg1():
return 'mew'
def test_1(meow):
print(meow)
""")
result = testdir.runpytest("-s")
result.stdout.fnmatch_lines("*mew*")