Explorar el Código

add more examples to the dataprovider

till hace 13 años
padre
commit
66d53aafef
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

+ 2 - 1
tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

@@ -100,11 +100,12 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
     {
         return array(
             array('http://svn.apache.org', true),
-            array('http://svn.sf.net', true),
+            array('https://svn.sf.net', true),
             array('svn://example.org', true),
             array('svn+ssh://example.org', true),
             array('file:///d:/repository_name/project', true),
             array('file:///repository_name/project', true),
+            array('/absolute/path', true),
         );
     }