c55a791237
- Moved everything test-related into `tests` directory. Codeception tests are in `codeception`. - Removed database module since we're using fixtures and migrations. - Moved console entry points and bootstrap into `tests/codeception/bin`. - Adjusted travis build scripts. - Adjusted documentation to be consistent and reflect changes made.
21 lines
529 B
Batchfile
21 lines
529 B
Batchfile
@echo off
|
|
|
|
rem -------------------------------------------------------------
|
|
rem Yii command line bootstrap script for Windows.
|
|
rem
|
|
rem @author Qiang Xue <qiang.xue@gmail.com>
|
|
rem @link http://www.yiiframework.com/
|
|
rem @copyright Copyright © 2012 Yii Software LLC
|
|
rem @license http://www.yiiframework.com/license/
|
|
rem -------------------------------------------------------------
|
|
|
|
@setlocal
|
|
|
|
set YII_PATH=%~dp0
|
|
|
|
if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe
|
|
|
|
"%PHP_COMMAND%" "%YII_PATH%yii_acceptance" %*
|
|
|
|
@endlocal
|