I commented on the JIRA - I'm pretty sure this is a problem with the active collections.

- Brett

On 04/07/2008, at 1:15 PM, [EMAIL PROTECTED] wrote:

Author: jvanzyl
Date: Thu Jul  3 20:15:24 2008
New Revision: 673896

URL: http://svn.apache.org/viewvc?rev=673896&view=rev
Log:
Checking MNG-3422, all the layouts are there. The descriptors are generated and are available in tests so they are getting punched elsewhere.

Modified:
maven/artifact/trunk/src/test/java/org/apache/maven/artifact/ repository/DefaultArtifactRepositoryFactoryTest.java

Modified: maven/artifact/trunk/src/test/java/org/apache/maven/ artifact/repository/DefaultArtifactRepositoryFactoryTest.java
URL: 
http://svn.apache.org/viewvc/maven/artifact/trunk/src/test/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactoryTest.java?rev=673896&r1=673895&r2=673896&view=diff
= = = = = = = = ====================================================================== --- maven/artifact/trunk/src/test/java/org/apache/maven/artifact/ repository/DefaultArtifactRepositoryFactoryTest.java (original) +++ maven/artifact/trunk/src/test/java/org/apache/maven/artifact/ repository/DefaultArtifactRepositoryFactoryTest.java Thu Jul 3 20:15:24 2008
@@ -69,4 +69,17 @@

        assertTrue( layout instanceof DefaultRepositoryLayout );
    }
+
+    public void testRetrievalOfKnownRepositoryLayouts()
+        throws Exception
+    {
+ ArtifactRepositoryLayout defaultLayout = repoFactory.getLayout( "default" );
+        assertNotNull( defaultLayout );
+
+ ArtifactRepositoryLayout legacyLayout = repoFactory.getLayout( "legacy" );
+        assertNotNull( legacyLayout );
+
+ ArtifactRepositoryLayout flatLayout = repoFactory.getLayout( "flat" );
+        assertNotNull( flatLayout );
+    }
}



--
Brett Porter
[EMAIL PROTECTED]
http://blogs.exist.com/bporter/


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to