jonnybarnes.uk/tests/Unit/MediaTest.php

16 lines
291 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
use App\Models\Media;
class MediaTest extends TestCase
{
public function test_get_note_from_media()
{
$media = Media::find(1);
$note = $media->note;
$this->assertInstanceOf('App\Models\Note', $note);
}
}