mirror of
https://github.com/sasjs/core.git
synced 2025-12-15 16:14:36 +00:00
21 lines
332 B
SAS
21 lines
332 B
SAS
/**
|
|
@file
|
|
@brief Testing mm_getauthinfo macro
|
|
|
|
<h4> SAS Macros </h4>
|
|
@li mf_existds.sas
|
|
@li mm_getauthinfo.sas
|
|
@li mp_assertscope.sas
|
|
|
|
**/
|
|
|
|
|
|
%mp_assertscope(SNAPSHOT)
|
|
%mm_getauthinfo(outds=auths)
|
|
%mp_assertscope(COMPARE)
|
|
|
|
|
|
%mp_assert(
|
|
iftrue=(%mf_existds(work.auths)=1),
|
|
desc=Check if the auths dataset was created
|
|
) |