New lines at end of file [skip ci]

This commit is contained in:
James Cole
2015-01-02 06:16:49 +01:00
parent 24bdc319dd
commit 5c35fee0c2
213 changed files with 213 additions and 213 deletions

View File

@@ -197,4 +197,4 @@ class AccountControllerCest
}
}
}

View File

@@ -273,4 +273,4 @@ class BillControllerCest
$I->see('Bill "Some bill" updated.');
}
}
}

View File

@@ -239,4 +239,4 @@ class BudgetControllerCest
$I->seeRecord('budgets', ['name' => 'Delete me']);
}
}
}

View File

@@ -189,4 +189,4 @@ class CategoryControllerCest
}
}
}

View File

@@ -199,4 +199,4 @@ class CurrencyControllerCest
$I->seeRecord('transaction_currencies', ['name' => 'US Dollar']);
}
}
}

View File

@@ -210,4 +210,4 @@ class GoogleChartControllerCest
}
}
}

View File

@@ -86,4 +86,4 @@ class HelpControllerCest
}
}
}

View File

@@ -94,4 +94,4 @@ class HomeControllerCest
$I->amOnPage('/prev');
$I->canSeeResponseCodeIs(200);
}
}
}

View File

@@ -53,4 +53,4 @@ class JsonControllerCest
$I->amOnPage('/json/revenue-accounts');
$I->canSeeResponseCodeIs(200);
}
}
}

View File

@@ -329,4 +329,4 @@ class PiggyBankControllerCest
}
}
}

View File

@@ -45,4 +45,4 @@ class PreferencesControllerCest
$I->submitForm('#preferences', []);
$I->see('Preferences saved!');
}
}
}

View File

@@ -147,4 +147,4 @@ class ProfileControllerCest
}
}
}

View File

@@ -83,4 +83,4 @@ class ReminderControllerCest
$I->see('your piggy bank labelled "Nieuwe spullen"');
}
}
}

View File

@@ -241,4 +241,4 @@ class RepeatedExpenseControllerCest
);
$I->see('The name field is required.');
}
}
}

View File

@@ -76,4 +76,4 @@ class ReportControllerCest
$I->see('Invalid date');
}
}
}

View File

@@ -36,4 +36,4 @@ class SearchControllerCest
$I->see('Search for ""');
}
}
}

View File

@@ -232,4 +232,4 @@ class TransactionControllerCest
}
}
}

View File

@@ -147,4 +147,4 @@ class UserControllerCest
$I->see('You\'re about to get an e-mail.');
}
}
}

View File

@@ -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);
}
}

View File

@@ -37,4 +37,4 @@ class AccountTest extends TestCase
$this->assertInstanceOf('User', $account->user);
}
}
}

View File

@@ -24,4 +24,4 @@ class AccountTypeTest extends TestCase
$this->assertCount(1, $account->accountType()->first()->accounts()->get());
}
}
}

View File

@@ -23,4 +23,4 @@ class BudgetTest extends TestCase
$this->assertInstanceOf('User', $budget->user);
}
}
}

View File

@@ -26,4 +26,4 @@ class PiggyBankRepetitionTest extends TestCase
$this->assertCount(1, PiggyBankRepetition::starts($start)->get());
$this->assertCount(1, PiggyBankRepetition::targets($target)->get());
}
}
}

View File

@@ -24,4 +24,4 @@ class PiggyBankTest extends TestCase
$piggyBank->reminders()->save($reminder);
$this->assertCount(1, $piggyBank->reminders()->get());
}
}
}

View File

@@ -35,4 +35,4 @@ class ReminderTest extends TestCase
$this->assertEquals($reminder->user->id, $user->id);
}
}
}

View File

@@ -22,4 +22,4 @@ class TransactionGroupTest extends TestCase
$group = f::create('TransactionGroup');
$this->assertEquals($group->user_id, $group->user->id);
}
}
}

View File

@@ -30,4 +30,4 @@ class TransactionJournalTest extends TestCase
$this->assertCount(1, TransactionJournal::moreThan($amount)->get());
}
}
}

View File

@@ -64,4 +64,4 @@ class TransactionTest extends TestCase
$type = $transaction->transactionJournal->transactionType->type;
$this->assertCount(1, Transaction::transactionTypes([$type])->get());
}
}
}

View File

@@ -27,4 +27,4 @@ class TransactionTypeTest extends TestCase
}
}
}

View File

@@ -31,4 +31,4 @@ class UserTest extends TestCase
$this->assertEquals($reminder->user_id, $reminder->user->id);
}
}
}