Skip to content

Commit

Permalink
Merge branch 'MDL-37046_master' of git://github.com/dmonllao/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Jan 29, 2013
2 parents 68aaba6 + ec017a3 commit e0f7550
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions admin/tool/behat/tests/tool_behat_test.php
Expand Up @@ -145,6 +145,12 @@ public function test_merge_configs() {
public function test_config_file_contents() {
global $CFG;

// Skip tests if behat is not installed.
$vendorpath = $CFG->dirroot . '/vendor';
if (!file_exists($vendorpath . '/autoload.php') || !is_dir($vendorpath . '/behat')) {
$this->markTestSkipped('Behat not installed.');
}

// To avoid user value at config.php level.
unset($CFG->behat_config);

Expand Down

0 comments on commit e0f7550

Please sign in to comment.