feat: adding ismap attribute to getdata response (and fixing test)
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 13s

This commit is contained in:
zver
2024-01-01 16:07:47 +00:00
parent 56264ecc69
commit 2702bb3c84
4 changed files with 55 additions and 4 deletions

View File

@ -5,6 +5,7 @@
<h4> SAS Macros </h4>
@li mf_getuniquefileref.sas
@li mx_testservice.sas
@li mp_assert.sas
@li mp_assertdsobs.sas
@ -41,3 +42,17 @@ run;
outds=work.test_results
)
/**
* Test 2 - info returned
*/
data work.xlmapinfo;
set web1.xlmapinfo;
putlog (_all_)(=);
call symputx('tgtds',target_ds);
run;
%mp_assert(
iftrue=(&tgtds=&dclib..MPE_EXCEL_UPLOAD),
desc=Checking correct target table is returned,
outds=work.test_results
)