Skip to content

Commit 11beb63

Browse files
committed
test: GrokServiceProviderTest
1 parent 27b4c55 commit 11beb63

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/Feature/GrokServiceProviderTest.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@
33
namespace Tests\Feature;
44

55
use Tests\TestCase;
6-
use GrokPHP\Client\Clients\GrokClient;
6+
use GrokPHP\Laravel\Services\GrokAI;
7+
use Illuminate\Support\Facades\App;
78

89
class GrokServiceProviderTest extends TestCase
910
{
10-
public function test_it_registers_the_GrokClient_in_the_service_container()
11+
public function test_it_registers_GrokAI_in_the_service_container()
1112
{
12-
// soon ...
13+
$grokAI = App::make(GrokAI::class);
14+
15+
$this->assertInstanceOf(GrokAI::class, $grokAI);
1316
}
1417
}

0 commit comments

Comments
 (0)