Beispiel #1
0
 def func():
     raise greentest.ExpectedException(
         'TestAsyncResultAsLinkTarget.test_set_exception')
Beispiel #2
0
 def t1():
     raise greentest.ExpectedException()
Beispiel #3
0
 def application(env, start_response):
     start_response('200 OK', [('Content-Type', 'text/plain')])
     yield "hello"
     raise greentest.ExpectedException('TestErrorAfterChunk')
Beispiel #4
0
 def application(env, start_response):
     start_response('200 OK', [('Content-Type', 'text/plain')])
     raise greentest.ExpectedException('TestError_after_start_response.application')
Beispiel #5
0
 def application(env, start_response):
     raise greentest.ExpectedException('TestError.application')
Beispiel #6
0
 def fail():
     raise greentest.ExpectedException(
         'TestExceptionInMainloop.test_sleep/fail')
Beispiel #7
0
 def handle(self, r):
     raise greentest.ExpectedException('TestException.handle')