Added all the old test things.

This commit is contained in:
James Cole
2015-02-07 08:42:20 +01:00
parent fb1c78c657
commit 2dc67d1674
45 changed files with 4254 additions and 13 deletions

26
tests/unit/BudgetTest.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
use League\FactoryMuffin\Facade as f;
/**
* Class BudgetTest
*/
class BudgetTest extends TestCase
{
public function setUp()
{
parent::setUp();
}
public function tearDown()
{
parent::tearDown();
}
public function testUser()
{
$budget = f::create('Budget');
$this->assertInstanceOf('User', $budget->user);
}
}