blob: cc8d975078d969d5ab9f99fae883e400d7f09237 [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0065Test
extends AbstractMavenIntegrationTestCase
{
/**
* Test that the basedir of the parent is set correctly.
*/
public void testit0065()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0065" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.deleteArtifact( "org.apache.maven.its.it0065", "plugin", "1.0", "maven-plugin" );
itr.invoke( "install" );
itr.assertFilePresent( "subproject/target/child-basedir" );
itr.assertFilePresent( "parent-basedir" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}