Browse Source

test with more than one resource

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@818133 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
aea6464f0e
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      src/tests/antunit/taskdefs/get-test.xml

+ 9
- 0
src/tests/antunit/taskdefs/get-test.xml View File

@@ -87,4 +87,13 @@
</au:expectfailure>
</target>
<target name="testNestedResources">
<get dest="${output}/downloads">
<url url="http://ant.apache.org/index.html"/>
<url url="http://ant.apache.org/faq.html"/>
</get>
<au:assertFileExists file="${output}/downloads/index.html"/>
<au:assertFileExists file="${output}/downloads/faq.html"/>
</target>
</project>

Loading…
Cancel
Save