summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/test_eval.py
blob: bda4ef6bf6aef3054cd28aeca79504f07a8f814e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import os
from pybind11_tests import eval_ as m


def test_evals(capture):
    with capture:
        assert m.test_eval_statements()
    assert capture == "Hello World!"

    assert m.test_eval()
    assert m.test_eval_single_statement()

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

    assert m.test_eval_failure()
    assert m.test_eval_file_failure()