-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mior Muhammad Zaki <[email protected]>
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
namespace NovaKit\Tests\Feature; | ||
|
||
use Illuminate\Foundation\Auth\User; | ||
use Illuminate\Support\Facades\Event; | ||
use Laravel\Octane\Events\RequestReceived; | ||
use function NovaKit\observe_eloquent; | ||
use Orchestra\Testbench\TestCase; | ||
|
||
class ObserveEloquentTest extends TestCase | ||
{ | ||
/** @test */ | ||
public function it_can_observe_eloquent() | ||
{ | ||
Event::fake(); | ||
|
||
observe_eloquent(User::class, new class { | ||
|
||
}); | ||
|
||
$this->assertTrue(Event::hasListeners( | ||
RequestReceived::class, | ||
)); | ||
} | ||
} | ||
|
||
class UserObserver { | ||
public function created($model) { | ||
|
||
} | ||
} |