add tests for new runtimes

This commit is contained in:
Casey Faist
2018-10-22 14:31:48 -05:00
parent ae4713efd8
commit 07241cd751
+15 -3
View File
@@ -93,9 +93,21 @@ testPython2() {
assertCapturedSuccess
}
testPython3() {
compile "python3"
assertCaptured "python-3.6.6"
testPython3_5() {
compile "python3_5"
assertCaptured "python-3.5.6"
assertCapturedSuccess
}
testPython3_6() {
compile "python3_6"
assertCaptured "python-3.6.7"
assertCapturedSuccess
}
testPython3_7() {
compile "python3_7"
assertCaptured "python-3.7.1"
assertCapturedSuccess
}