1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 13:45:04 -05:00

Move bootstrap for atoum into units dir

This commit is contained in:
Vincent Jousse 2013-11-22 22:45:40 +01:00
parent d4ed21081c
commit 65dd276fbf
3 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ class UnitTestsCommand extends BaseCommand
{
$atoum = $this->getProjectDirectory().'/vendor/bin/atoum';
$unitTests = $this->getProjectDirectory().'/tests';
$bootstrapFile = $this->getProjectDirectory().'/tests/bootstrap.php';
$bootstrapFile = $this->getProjectDirectory().'/tests/units/bootstrap.php';
$command = '%s -d %s -bf %s -ft';
if ($input->getOption('loop')) {

View File

@ -1,4 +0,0 @@
<?php
require_once __DIR__.'/../vendor/autoload.php';
require_once __DIR__.'/../vendor/atoum/atoum/scripts/runner.php';

View File

@ -0,0 +1,4 @@
<?php
require_once __DIR__.'/../../vendor/autoload.php';
require_once __DIR__.'/../../vendor/atoum/atoum/scripts/runner.php';