Skip to content

Commit

Permalink
[JENKINS-28881] - Disable the JENKINS-32359 unit test till the CloudB…
Browse files Browse the repository at this point in the history
…ees Folders Plugin gets released
  • Loading branch information
oleg-nenashev committed Jan 10, 2016
1 parent b42f293 commit a188d3e
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -40,6 +40,7 @@
import org.jenkinsci.plugins.ownership.test.util.OwnershipPluginConfigurer;
import org.jenkinsci.remoting.RoleChecker;
import static org.junit.Assert.assertThat;
import org.junit.Ignore;

import org.junit.Rule;
import org.junit.Test;
Expand Down Expand Up @@ -91,6 +92,8 @@ public void ownershipInfoShouldSurviveRoundtrip() throws Exception {
}

@Test
@Ignore("The issue fix requires the new CloudBees Folders Release. "
+ "It has been decided to go forward in order to integrate other changes before the release.")
@Issue("JENKINS-32359")
public void ownershipFromLoadedFolderShouldSurviveRoundtrip() throws Exception {
Folder folder = j.jenkins.createProject(Folder.class, "myFolder");
Expand Down Expand Up @@ -238,7 +241,5 @@ public void ownershipShouldNotBeInheritedFromTopLevelFolderIfDisabled() throws E
folderOwnershipInfo.getDescription(), equalTo(OwnershipDescription.DISABLED_DESCR));
assertThat("Project should not inherit the ownerhip info when inheritance is disabled",
projectOwnershipInfo.getDescription(), equalTo(OwnershipDescription.DISABLED_DESCR));
}


}
}

0 comments on commit a188d3e

Please sign in to comment.