1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-16 04:50:05 +00:00

feat: new macro for validating inputs (mp_validatecol.sas), also a refresh of the tests now that sasjs test is released. All tests are passing

This commit is contained in:
Allan Bowe
2021-05-05 01:35:00 +03:00
parent e01b06b640
commit fb21a0adfd
11 changed files with 2347 additions and 28 deletions

View File

@@ -4,6 +4,7 @@
<h4> SAS Macros </h4>
@li mv_createwebservice.sas
@li mv_getjobcode.sas
**/
@@ -21,4 +22,20 @@ run;
path=&mcTestAppLoc/tests/macros,
code=testref,
name=mv_createwebservice
)
)
filename compare temp;
%mv_getjobcode(
path=&mcTestAppLoc/tests/macros
,name=mv_createwebservice
,outref=compare;
)
data test_results;
length test_description $256 test_result $4 test_comments $256;
infile compare;
input;
if _infile_='01'x then test_result='PASS';
else test_result='FAIL';
test_description="Creating web service with invisible character";
run;