Author: jkf Date: Sat Jun 30 14:04:24 2007 New Revision: 552213 URL: http://svn.apache.org/viewvc?view=rev&rev=552213 Log: Bug 42745 assertFileExists example wrong, should use @file instead of @name
bug reported by Jim Fuller Added: ant/antlibs/antunit/trunk/WHATSNEW Modified: ant/antlibs/antunit/trunk/NOTICE ant/antlibs/antunit/trunk/docs/assertions.html Modified: ant/antlibs/antunit/trunk/NOTICE URL: http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/NOTICE?view=diff&rev=552213&r1=552212&r2=552213 ============================================================================== --- ant/antlibs/antunit/trunk/NOTICE (original) +++ ant/antlibs/antunit/trunk/NOTICE Sat Jun 30 14:04:24 2007 @@ -4,7 +4,7 @@ ========================================================================= Apache AntUnit - Copyright 2005-2006 The Apache Software Foundation + Copyright 2005-2007 The Apache Software Foundation This product includes software developed by The Apache Software Foundation (http://www.apache.org/). Added: ant/antlibs/antunit/trunk/WHATSNEW URL: http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/WHATSNEW?view=auto&rev=552213 ============================================================================== --- ant/antlibs/antunit/trunk/WHATSNEW (added) +++ ant/antlibs/antunit/trunk/WHATSNEW Sat Jun 30 14:04:24 2007 @@ -0,0 +1,15 @@ +Changes from AntUnit 1.0 TO current SVN version +=============================================== + +Probably some items are (still) missing + +Changes that could break older environments: +------------------------------------------- + +Fixed bugs: +----------- + +* Bug 42745 assertFileExists example wrong, should use @file instead of @name + +Other changes: +-------------- \ No newline at end of file Modified: ant/antlibs/antunit/trunk/docs/assertions.html URL: http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/docs/assertions.html?view=diff&rev=552213&r1=552212&r2=552213 ============================================================================== --- ant/antlibs/antunit/trunk/docs/assertions.html (original) +++ ant/antlibs/antunit/trunk/docs/assertions.html Sat Jun 30 14:04:24 2007 @@ -202,7 +202,7 @@ exist:</p> <pre> - <assertFileExists name="${ant.home}/lib/ant.jar"/> + <assertFileExists file="${ant.home}/lib/ant.jar"/> </pre> <h2><a name="assertFileDoesntExist">assertFileDoesntExist</a></h2> @@ -235,7 +235,7 @@ exists:</p> <pre> - <assertFileDoesntExist name="${ant.home}/lib/ant.jar"/> + <assertFileDoesntExist file="${ant.home}/lib/ant.jar"/> </pre> <h2><a name="assertDestIsUpToDate">assertDestIsUpToDate</a></h2> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]