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:
parent
d4ed21081c
commit
65dd276fbf
@ -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')) {
|
||||
|
@ -1,4 +0,0 @@
|
||||
<?php
|
||||
|
||||
require_once __DIR__.'/../vendor/autoload.php';
|
||||
require_once __DIR__.'/../vendor/atoum/atoum/scripts/runner.php';
|
4
tests/units/bootstrap.php
Normal file
4
tests/units/bootstrap.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
require_once __DIR__.'/../../vendor/autoload.php';
|
||||
require_once __DIR__.'/../../vendor/atoum/atoum/scripts/runner.php';
|
Loading…
Reference in New Issue
Block a user