mirror of
https://github.com/sasjs/core.git
synced 2025-12-10 14:04:36 +00:00
31 lines
570 B
SAS
31 lines
570 B
SAS
/**
|
|
@file
|
|
@brief Testing mp_ds2inserts.sas macro
|
|
|
|
<h4> SAS Macros </h4>
|
|
@li mp_ds2inserts.sas
|
|
@li mp_assert.sas
|
|
|
|
**/
|
|
|
|
/**
|
|
* test 1 - rebuild an existing dataset
|
|
* Cars is a great dataset - it contains leading spaces, and formatted numerics
|
|
*/
|
|
|
|
%mp_ds2inserts(sashelp.cars,outref=testref,schema=work,outds=test)
|
|
|
|
data work.test;
|
|
set sashelp.cars;
|
|
stop;
|
|
proc sql;
|
|
%inc testref;
|
|
|
|
proc compare base=sashelp.cars compare=work.test;
|
|
quit;
|
|
|
|
%mp_assert(
|
|
iftrue=(&sysinfo=1),
|
|
desc=sashelp.cars is identical except for ds label,
|
|
outds=work.test_results
|
|
) |