phpunit.xml.dist 958 B

1234567891011121314151617181920212223
  1. <!-- Copy and rename to phpunit.xml. Customize as needed. -->
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. syntaxCheck="false"
  5. bootstrap="drush_testcase.inc">
  6. <php>
  7. <!-- These variables may alternatively be set as bash environment variables. -->
  8. <!--Uncomment and edit one of the lines below depending on DB platform.-->
  9. <!--DB User must have create/drop permissions-->
  10. <!-- <var name="UNISH_DB_URL" value="mysql://root:@127.0.0.1"/> -->
  11. <!-- <var name="UNISH_DB_URL" value="pgsql://postgres:@localhost"/>-->
  12. <!--User must have write permissions to this directory.-->
  13. <!--If not supplied, defaults to sys_get_tmp_dir().-->
  14. <!-- <var name="UNISH_TMP" value="/tmp"/> -->
  15. <!--Uncomment the line below if your path to drush differs from `which drush`. Use absolute path.-->
  16. <!--<var name="UNISH_DRUSH" value="/Users/mw/bin/drush"/>-->
  17. <includePath>.</includePath>
  18. </php>
  19. </phpunit>