betterweekdays / upal
PHPUnit integeration for Drupal
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 4 687
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 20
Open Issues: 0
Requires
- php: >=5.3.0
- hassankhan/config: 0.8.2
This package is not auto-updated.
Last update: 2022-05-14 05:34:53 UTC
README
A group of classes used to help run tests using PHPUnit in Drupal.
upal assumes that tests are allowed to modify the database.
Usage
- Install PHPUnit (https://phpunit.de/manual/current/en/installation.html) and Drush (http://drupal.org/project/drush).
- Checkout or download a core Drupal that is to be tested (only tested with 7.x).
- Implement Upal\Bootstrap class
Configuration
Configuration can be loaded from array or file (YAML, XML, etc). Uses this config library: https://github.com/hassankhan/config.
Example:
$config = new Upal\Config(); $config->set('drush', '/path/to/drush'); $config->set('drupal_root', '/path/to/drupal/root'); $bootstrap = new Upal\Bootstrap($config); $bootstrap->setUp();
Config Defaults
- drush => trim(
which drush
) - root => realpath('.')
- web_url => 'http://upal'
- tmp => sys_get_temp_dir()
- drupal_root => realpath('.')