blob: 6612a4aacf8b7019ffa52807416f1d758ef9c095 [file] [log] [blame]
package org.apache.maven.integrationtests;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0004Test
extends AbstractMavenIntegrationTestCase
{
/**
* The simplest of pom installation. We have a pom and we install it in
* local repository.
*/
public void testit0004()
throws Exception
{
IntegrationTestRunner itr = createTestRunner();
itr.deleteArtifact( "org.apache.maven", "maven-it-it0004", "1.0", "pom" );
itr.invoke( "install:install" );
itr.assertArtifactPresent( "org.apache.maven.its.it0004", "maven-it-it0004", "1.0", "pom" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}