Skip to content

Commit 261d145

Browse files
committed
Merge branch 'test_pytest_namespace' into fix-double-pytest-configure
2 parents 04a11d7 + 1ed1ce8 commit 261d145

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

testing/test_basic.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ def cmd_opts(request):
4141
return ("--reactor={}".format(reactor),)
4242

4343

44+
def test_inline_callbacks_in_pytest():
45+
assert hasattr(pytest, 'inlineCallbacks')
46+
47+
48+
def test_blockon_in_pytest():
49+
assert hasattr(pytest, 'blockon')
50+
51+
4452
def test_fail_later(testdir, cmd_opts):
4553
test_file = """
4654
from twisted.internet import reactor, defer

0 commit comments

Comments
 (0)