Files
dc/sas/sasjs/services/approvers/gethistory.test.sas
T
4gl 6527c10f26
Build / Build-and-ng-test (pull_request) Successful in 5m8s
Lighthouse Checks / lighthouse (pull_request) Successful in 21m36s
Build / Build-and-test-development (pull_request) Successful in 25m4s
fix: core major bump plus autofix of viya context on deploy
2026-08-17 15:46:52 +01:00

37 lines
546 B
SAS

/**
@file
@brief testing gethistory service
<h4> SAS Macros </h4>
@li mx_execute.sas
@li mp_assertdsobs.sas
**/
%let _program=&appLoc/services/approvers/gethistory;
filename fref1 temp;
data _null_;
file fref1 termstr=crlf;
put 'HIST:best.';
put '50';
run;
%mx_execute(&_program,
viyacontext=&defaultcontext,
inputfiles=fref1:BrowserParams ,
outlib=webout,
debug=log
)
data fromsas;
set webout.fromsas;
run;
%mp_assertdsobs(work.fromsas,
desc=Fromsas table returned,
test=HASOBS,
outds=work.test_results
)