mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-26 03:30:32 +08:00
13 lines
255 B
PHP
13 lines
255 B
PHP
<?php
|
|
namespace Codeception\Module;
|
|
|
|
// here you can define custom functions for WebGuy
|
|
|
|
class WebHelper extends \Codeception\Module
|
|
{
|
|
public function _beforeSuite($settings = [])
|
|
{
|
|
include __DIR__.'/../acceptance/_bootstrap.php';
|
|
}
|
|
}
|