test.py 206 Bytes
Newer Older
1
import sys
2

3
4
import test_cmake_build

5
assert isinstance(__file__, str)  # Test this is properly set
6

7
8
assert test_cmake_build.add(1, 2) == 3
print("{} imports, runs, and adds: 1 + 2 = 3".format(sys.argv[1]))