def test_too_many_unquote(self): assert_raises(DaoSyntaxError, eval, qq(uq(uq(add(1,1)))))
def test_too_many_unquote(self): assert_raises(DaoSyntaxError, eval, qq(uq(uq(add(1, 1)))))
def test_unquote_add(self): eq_(eval(qq(uq(add(1,1)))), 2)
def test_unquote_add(self): eq_(eval(qq(uq(add(1, 1)))), 2)