#!/bin/sh

testImportTk() {
	pypy3 -c 'import tkinter'
	assertTrue 'tkinter is importable' $?
}

. shunit2
