Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java')
-rw-r--r--org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
index 802b9e6be..7002af240 100644
--- a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
+++ b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
@@ -57,6 +57,14 @@ public class TracTestCleanupUtil extends TestCase {
deleteOldTickets();
}
+ public void testCleanup012() throws Exception {
+ TracFixture fixture = TracFixture.TRAC_0_12_XML_RPC.activate();
+ System.err.println("Connected to " + fixture.getRepositoryUrl());
+ client = fixture.connect(PrivilegeLevel.ADMIN);
+ deleteOldAttachments();
+ deleteOldTickets();
+ }
+
public void testCleanupTrunk() throws Exception {
TracFixture fixture = TracFixture.TRAC_TRUNK_XML_RPC.activate();
System.err.println("Connected to " + fixture.getRepositoryUrl());

Back to the top