Made big headway in preference management, accounts, importing stuff, etc. etc.

This commit is contained in:
James Cole
2014-07-06 15:18:11 +02:00
parent 188105492c
commit 4192f2bc8f
46 changed files with 672 additions and 187 deletions

View File

@@ -0,0 +1,30 @@
<?php
class TransactionJournalTest extends TestCase
{
/**
* Default preparation for each test
*/
public function setUp()
{
parent::setUp();
$this->prepareForTests();
}
/**
* Migrate the database
*/
private function prepareForTests()
{
Artisan::call('migrate');
}
/**
* Test accounts
*/
public function testJournal()
{
$this->assertTrue(true);
}
}

View File

@@ -68,11 +68,8 @@ class UserTest extends TestCase
$account->save();
$this->assertCount(1,$user->accounts()->get());
}
}