Esempio n. 1
0
    def test_parse_select(self):
        SASDoc.from_string('''
SELECT;
WHEN(&SEX='2') _AGESEX  = 1;
OTHERWISE;
END;
        ''')
Esempio n. 2
0
 def test_macro_macro_call_variable(self):
     SASDoc.from_string(
         '%IF "&LABELMAC" ne "" %THEN %&LABELMAC;  *HCC labels;').dump()
Esempio n. 3
0
 def test_ParseNode_comment_dump(self):
     SASDoc.from_string('*;').dump()
Esempio n. 4
0
 def test_empty_stmt(self):
     SASDoc.from_string(';')
Esempio n. 5
0
 def test_empty_doc(self):
     SASDoc.from_string('')