You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
626 B
16 lines
626 B
from testing.embedding.test_basic import EmbeddingTests
|
|
|
|
|
|
class TestRecursive(EmbeddingTests):
|
|
def test_recursive(self):
|
|
add_recursive_cffi = self.prepare_module('add_recursive')
|
|
self.compile('add_recursive-test', [add_recursive_cffi])
|
|
output = self.execute('add_recursive-test')
|
|
assert output == ("preparing REC\n"
|
|
"some_callback(400)\n"
|
|
"adding 400 and 9\n"
|
|
"<<< 409 >>>\n"
|
|
"adding 40 and 2\n"
|
|
"adding 100 and -5\n"
|
|
"got: 42 95\n")
|