assertTrue(p.poll(StreamTaskListener.fromStdout()).hasChanges());
}
@Test
public void testIgnorePropertyOnlyDirChanges() throws Exception {
File repo = new CopyExisting(getClass().getResource("ignoreProps.zip")).allocate();
FreeStyleProject p = createFreeStyleProject( "testIgnorePropertyOnlyDirChanges" );
SubversionSCM scm = new SubversionSCM(
Arrays.asList( new ModuleLocation( "file://" + repo.toURI().toURL().getPath() + "/p", "." )),
new UpdateUpdater(), null, null, null, null, null, null, true);
p.setScm(scm);