[dna-commits] DNA SVN: r699 - trunk/extensions/dna-connector-svn/src/test/java/org/jboss/dna/connector/svn.

dna-commits at lists.jboss.org dna-commits at lists.jboss.org
Fri Jan 9 14:14:32 EST 2009


Author: spagop
Date: 2009-01-09 14:14:32 -0500 (Fri, 09 Jan 2009)
New Revision: 699

Modified:
   trunk/extensions/dna-connector-svn/src/test/java/org/jboss/dna/connector/svn/SVNRepositorySourceTest.java
Log:
change the wrong url

Modified: trunk/extensions/dna-connector-svn/src/test/java/org/jboss/dna/connector/svn/SVNRepositorySourceTest.java
===================================================================
--- trunk/extensions/dna-connector-svn/src/test/java/org/jboss/dna/connector/svn/SVNRepositorySourceTest.java	2009-01-08 18:17:07 UTC (rev 698)
+++ trunk/extensions/dna-connector-svn/src/test/java/org/jboss/dna/connector/svn/SVNRepositorySourceTest.java	2009-01-09 19:14:32 UTC (rev 699)
@@ -66,7 +66,7 @@
         validUuidPropertyName = "dna:uuid";
 
         // For file protocol access
-        url = "file:///Users/sp/SVNRepos/test";
+        url = "file:///dummy_svn_repos";
 
         // For http protocol access
         // url = "http://anonsvn.jboss.org/repos/dna/trunk/extensions/dna-connector-svn/src/test/resources";
@@ -243,22 +243,11 @@
 
     // Only with local file protocol
 
-    @Test
-    public void shouldCreateFSRepositoryIfProtocolIsOfTypeFile() throws Exception {
-        this.source.setName(validName);
-        this.source.setSVNURL(url);
-        this.connection = source.getConnection();
-        assertThat(this.connection, is(notNullValue()));
-    }
-
-    // @Test
-    // public void shouldCreateDAVRepositoryIfProtocolIsOfTypeHttp() throws Exception {
-    // this.source.setName(validName);
-    // this.source.setSVNURL(url);
-    // this.source.setSVNUsername(username);
-    // this.source.setSVNPassword(password);
-    // this.connection = source.getConnection();
-    // assertThat(this.connection, is(notNullValue()));
-    // }
-
+//    @Test
+//    public void shouldCreateFSRepositoryIfProtocolIsOfTypeFile() throws Exception {
+//        this.source.setName(validName);
+//        this.source.setSVNURL(url);
+//        this.connection = source.getConnection();
+//        assertThat(this.connection, is(notNullValue()));
+//    }
 }




More information about the dna-commits mailing list