test_eval.py 560 Bytes
Newer Older
1
import os
Dean Moldovan's avatar
Dean Moldovan committed
2
3


4
5
6
def test_evals(capture):
    from pybind11_tests import (test_eval_statements, test_eval, test_eval_single_statement,
                                test_eval_file, test_eval_failure, test_eval_file_failure)
Dean Moldovan's avatar
Dean Moldovan committed
7
8

    with capture:
9
10
11
12
13
14
15
16
17
18
19
        assert test_eval_statements()
    assert capture == "Hello World!"

    assert test_eval()
    assert test_eval_single_statement()

    filename = os.path.join(os.path.dirname(__file__), "test_eval_call.py")
    assert test_eval_file(filename)

    assert test_eval_failure()
    assert test_eval_file_failure()