test/spec/spectest3.xml
changeset 1 fe592b4168f3
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/spec/spectest3.xml	Wed Oct 10 22:58:48 2012 +0100
     1.3 @@ -0,0 +1,25 @@
     1.4 +<and>
     1.5 +  <expr>
     1.6 +    <define name="email" args="to body">
     1.7 +      <add>
     1.8 +	<string>From user@localhost&#10;</string>
     1.9 +	<string>To: </string>
    1.10 +	<to/>
    1.11 +	<string>&#10;</string>
    1.12 +	<string>&#10;</string>
    1.13 +	<body/>
    1.14 +	<string>&#10;</string>
    1.15 +      </add>
    1.16 +    </define>
    1.17 +
    1.18 +    <eq>
    1.19 +      <email to="authors@ebt.com">hello</email>
    1.20 +      <email>
    1.21 +	<define name="to">authors@ebt.com</define>
    1.22 +	hello
    1.23 +      </email>
    1.24 +    </eq>
    1.25 +  </expr>
    1.26 +
    1.27 +  <print x="2"><define name="x">3</define><x/></print>
    1.28 +</and>