1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 10:04:21 +03:00
inform7/services/kinds-test/Tests/kinds-test.intest

23 lines
526 B
Plaintext

-cases [Main] 'services/kinds-test/Tests/Test Cases'
-recipe [Main]
set: $A = $PATH/_Results_Actual/$CASE.txt
set: $I = $PATH/_Results_Ideal/$CASE.txt
set: $K = inform7/internal/Inter/BasicInformKit/kinds/Core.kindt
mkdir: $PATH/_Results_Actual
step: services/kinds-test/Tangled/kinds-test -load $K -interpret $PATH/$CASE.txt >$A 2>&1
or: 'produced errors in kinds-test' $A
show: $A
exists: $I
or: 'passed without errors but no blessed output existed'
match text: $A $I
or: 'produced incorrect output'
-end