Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Dec 31, 2023
1 parent f33d2e1 commit c59926e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/Fields/BelongsToTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<?php

namespace Cone\Root\Tests;
namespace Cone\Root\Tests\Fields;

use Cone\Root\Fields\BelongsTo;
use Cone\Root\Tests\TestCase;

class BelongsToTest extends TestCase
{
Expand All @@ -12,6 +13,11 @@ public function setUp(): void
{
parent::setUp();

//
$this->field = new BelongsTo('User');
}

public function test_a_belongs_to_field_hydates_model(): void
{
$this->assertTrue(true);
}
}

0 comments on commit c59926e

Please sign in to comment.