Skip to content
This repository has been archived by the owner on Mar 2, 2020. It is now read-only.

A Codeception module for running Drupal Drush commands.

Notifications You must be signed in to change notification settings

ixis/codeception-drupal-drush

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Drupal Drush

A Codeception module for running drupal drush commands.

Drupal Drush is a Codeception module for running drush commands on Drupal sites.

It also allows the use of the following statements in tests:

// Execute "drush cc all"
$I->getDrush("cc", array("all"))->mustRun();

Install with Composer

{
    "require": {
        "codeception/codeception": "~2.0.0",
        "ixis/codeception-drupal-drush": "~0.1"
    }
}

Drupal Drush minimally requires Codeception 2.0.* and PHP 5.4

Example suite configuration

class_name: AcceptanceTester
modules:
    enabled:
        - PhpBrowser
        - AcceptanceHelper
        - DrupalDrush
    config:
        PhpBrowser:
            url: 'http://localhost/myapp/'
        DrupalDrush:
            drush-alias: '@mysite.local' # The Drush alias to use (required).

Required configuration

  • drush-alias is required.

About

A Codeception module for running Drupal Drush commands.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages