18 lines
371 B
Plaintext
18 lines
371 B
Plaintext
|
#import "./testdata/tests_export" as $exportData;
|
||
|
include "journalUtils";
|
||
|
include "testLib";
|
||
|
|
||
|
def testsMain:
|
||
|
$ARGS.named["file:testdata/tests_export.json"][0] as $exportData |
|
||
|
|
||
|
expectPassed(runTest(
|
||
|
$__loc__;
|
||
|
"invalid input to experienceByTitle";
|
||
|
(
|
||
|
$exportData.experiences |
|
||
|
experienceByTitle("Test")
|
||
|
);
|
||
|
. == "error";
|
||
|
false
|
||
|
));
|