snipe-it/tests/unit/LocationTest.php
2017-05-23 03:03:25 -07:00

28 lines
647 B
PHP

<?php
use App\Models\Location;
use Illuminate\Support\Facades\Hash;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class LocationTest extends \Codeception\TestCase\Test
{
/**
* @var \UnitTester
*/
protected $tester;
use DatabaseMigrations;
public function testLocationAdd()
{
$location = factory(Location::class, 'location')->make();
$values = [
'name' => $location->name,
];
Location::create($values);
$this->tester->seeRecord('locations', $values);
}
}