blob: 62b119786df4e1e06f2e00f6fa9646884a221776 [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0005Test
extends AbstractMavenIntegrationTestCase
{
/**
* The simplest of pom installation. We have a snapshot pom and we install
* it in local repository.
*/
public void testit0005()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0005" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.deleteArtifact( "org.apache.maven", "maven-it-it0005", "1.0-SNAPSHOT", "pom" );
itr.executeGoal( "install:install" );
itr.assertArtifactPresent( "org.apache.maven.its.it0005", "maven-it-it0005", "1.0-SNAPSHOT", "pom" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}