From 74220fb6f9b425ee34dcbfbb54de8d1fb14a9c46 Mon Sep 17 00:00:00 2001 From: Himanshu Sharma Date: Mon, 27 Jan 2025 20:51:10 +0530 Subject: [PATCH] Fixes #23: Port Tests --- port-test.py | 3 +++ test.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 port-test.py diff --git a/port-test.py b/port-test.py new file mode 100644 index 0000000..470f095 --- /dev/null +++ b/port-test.py @@ -0,0 +1,3 @@ +import metacall + +print("works") diff --git a/test.sh b/test.sh index a3427da..7f32fa6 100755 --- a/test.sh +++ b/test.sh @@ -2,3 +2,6 @@ set -euxo pipefail brew test ./metacall.rb + +echo "Testing Python port..." +metacall port-test.py | grep "works"