Skip to content

Commit 1f62928

Browse files
committed
Simple testcase for SYSBAS
Signed-off-by: worksofliam <[email protected]>
1 parent 63efdcb commit 1f62928

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/testing/connection.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,16 @@ export const ConnectionSuite: TestSuite = {
328328
connection.variantChars.local = variantsBackup;
329329
}
330330
}
331+
},
332+
{
333+
name: `Test getLibraryIAsp against QSYSINC`, test: async () => {
334+
const connection = instance.getConnection()!;
335+
336+
const library = `QSYSINC`;
337+
338+
const asp = await connection.lookupLibraryIAsp(library);
339+
assert.strictEqual(asp, undefined); // Because QSYSINC is not an iASP
340+
}
331341
}
332342
]
333343
};

0 commit comments

Comments
 (0)