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