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

chore: moving files to tidy up docs

This commit is contained in:
Allan Bowe
2021-08-18 19:43:38 +03:00
parent 756441384a
commit fc8ba2e36c
33 changed files with 3 additions and 4 deletions

View File

@@ -1,32 +0,0 @@
/**
@file
@brief Testing mp_assertcolvals macro
<h4> SAS Macros </h4>
@li mp_assertcolvals.sas
**/
data work.checkds;
do checkval='Jane','James','Jill';
output;
end;
run;
%mp_assertcolvals(sashelp.class.name,
checkvals=work.checkds.checkval,
desc=At least one value has a match,
test=ANYVAL
)
data work.check;
do val='M','F';
output;
end;
run;
%mp_assertcolvals(sashelp.class.sex,
checkvals=work.check.val,
desc=All values have a match,
test=ALLVALS
)