#!/bin/sh

TMP_DIR=/tmp/foo

sudo modprobe fuse

mkdir $TMP_DIR
python3 example/hello.py $TMP_DIR

[ "$(cat ${TMP_DIR}/hello)" = "Hello World!" ]
