mirror of
https://github.com/thelsing/knx.git
synced 2024-12-23 19:09:41 +01:00
11 lines
234 B
Python
11 lines
234 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
import test_cmake_build
|
|
|
|
assert isinstance(__file__, str) # Test this is properly set
|
|
|
|
assert test_cmake_build.add(1, 2) == 3
|
|
print(f"{sys.argv[1]} imports, runs, and adds: 1 + 2 = 3")
|