mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Cleanup test case.
This commit is contained in:
parent
922b2962a3
commit
aef2075c8e
@ -33,40 +33,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
|
|||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
// if the database copy does not exist, call migrate.
|
|
||||||
$copy = __DIR__ . '/../storage/database/testing-copy.db';
|
|
||||||
$original = __DIR__ . '/../storage/database/testing.db';
|
|
||||||
|
|
||||||
FactoryMuffin::loadFactories(__DIR__ . '/factories');
|
|
||||||
|
|
||||||
if (!file_exists($copy)) {
|
|
||||||
touch($original);
|
|
||||||
Artisan::call('migrate');
|
|
||||||
|
|
||||||
|
|
||||||
// create EUR currency
|
|
||||||
/** @var TransactionCurrency $currency */
|
|
||||||
$currency = FactoryMuffin::create('FireflyIII\Models\TransactionCurrency');
|
|
||||||
$currency->code = 'EUR';
|
|
||||||
$currency->save();
|
|
||||||
copy($original, $copy);
|
|
||||||
} else {
|
|
||||||
|
|
||||||
if (file_exists($copy)) {
|
|
||||||
copy($copy, $original);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// if the database copy does exists, copy back as original.
|
|
||||||
|
|
||||||
$this->session(
|
|
||||||
[
|
|
||||||
'start' => Carbon::now()->startOfMonth(),
|
|
||||||
'end' => Carbon::now()->endOfMonth(),
|
|
||||||
'first' => Carbon::now()->startOfYear()
|
|
||||||
]
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -87,10 +53,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
|
|||||||
{
|
{
|
||||||
parent::tearDown();
|
parent::tearDown();
|
||||||
|
|
||||||
// delete copy original.
|
|
||||||
//$original = __DIR__.'/../storage/database/testing.db';
|
|
||||||
//unlink($original);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user