mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-18 15:39:50 +00:00
New lines at end of file [skip ci]
This commit is contained in:
@@ -197,4 +197,4 @@ class AccountControllerCest
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -273,4 +273,4 @@ class BillControllerCest
|
||||
$I->see('Bill "Some bill" updated.');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -239,4 +239,4 @@ class BudgetControllerCest
|
||||
$I->seeRecord('budgets', ['name' => 'Delete me']);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -189,4 +189,4 @@ class CategoryControllerCest
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -199,4 +199,4 @@ class CurrencyControllerCest
|
||||
$I->seeRecord('transaction_currencies', ['name' => 'US Dollar']);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -210,4 +210,4 @@ class GoogleChartControllerCest
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,4 +86,4 @@ class HelpControllerCest
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -94,4 +94,4 @@ class HomeControllerCest
|
||||
$I->amOnPage('/prev');
|
||||
$I->canSeeResponseCodeIs(200);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,4 +53,4 @@ class JsonControllerCest
|
||||
$I->amOnPage('/json/revenue-accounts');
|
||||
$I->canSeeResponseCodeIs(200);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -329,4 +329,4 @@ class PiggyBankControllerCest
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,4 +45,4 @@ class PreferencesControllerCest
|
||||
$I->submitForm('#preferences', []);
|
||||
$I->see('Preferences saved!');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -147,4 +147,4 @@ class ProfileControllerCest
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,4 +83,4 @@ class ReminderControllerCest
|
||||
$I->see('your piggy bank labelled "Nieuwe spullen"');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -241,4 +241,4 @@ class RepeatedExpenseControllerCest
|
||||
);
|
||||
$I->see('The name field is required.');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -76,4 +76,4 @@ class ReportControllerCest
|
||||
$I->see('Invalid date');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,4 +36,4 @@ class SearchControllerCest
|
||||
$I->see('Search for ""');
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -232,4 +232,4 @@ class TransactionControllerCest
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -147,4 +147,4 @@ class UserControllerCest
|
||||
$I->see('You\'re about to get an e-mail.');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,4 +5,4 @@ if (!file_exists($db)) {
|
||||
exec('touch ' . $db);
|
||||
exec('php artisan migrate --seed --env=testing', $out);
|
||||
exec('sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql', $out);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,4 +37,4 @@ class AccountTest extends TestCase
|
||||
$this->assertInstanceOf('User', $account->user);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,4 +24,4 @@ class AccountTypeTest extends TestCase
|
||||
$this->assertCount(1, $account->accountType()->first()->accounts()->get());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,4 +23,4 @@ class BudgetTest extends TestCase
|
||||
$this->assertInstanceOf('User', $budget->user);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,4 +26,4 @@ class PiggyBankRepetitionTest extends TestCase
|
||||
$this->assertCount(1, PiggyBankRepetition::starts($start)->get());
|
||||
$this->assertCount(1, PiggyBankRepetition::targets($target)->get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,4 +24,4 @@ class PiggyBankTest extends TestCase
|
||||
$piggyBank->reminders()->save($reminder);
|
||||
$this->assertCount(1, $piggyBank->reminders()->get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,4 +35,4 @@ class ReminderTest extends TestCase
|
||||
|
||||
$this->assertEquals($reminder->user->id, $user->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,4 +22,4 @@ class TransactionGroupTest extends TestCase
|
||||
$group = f::create('TransactionGroup');
|
||||
$this->assertEquals($group->user_id, $group->user->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,4 +30,4 @@ class TransactionJournalTest extends TestCase
|
||||
|
||||
$this->assertCount(1, TransactionJournal::moreThan($amount)->get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -64,4 +64,4 @@ class TransactionTest extends TestCase
|
||||
$type = $transaction->transactionJournal->transactionType->type;
|
||||
$this->assertCount(1, Transaction::transactionTypes([$type])->get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,4 +27,4 @@ class TransactionTypeTest extends TestCase
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,4 +31,4 @@ class UserTest extends TestCase
|
||||
$this->assertEquals($reminder->user_id, $reminder->user->id);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user