mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 13:14:23 +01:00
26 lines
587 B
PHP
26 lines
587 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit\Extensions;
|
||
|
|
||
|
use Tests\TestCase;
|
||
|
use App\Extensions\RemoteUserProvider;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @covers \App\Extensions\RemoteUserProvider
|
||
|
*/
|
||
|
class RemoteUserProviderTest extends TestCase
|
||
|
{
|
||
|
public function test_retreiving_a_user_returns_a_non_persisted_user_instance()
|
||
|
{
|
||
|
$provider = new RemoteUserProvider;
|
||
|
|
||
|
$user = $provider->retrieveById([
|
||
|
'user' => 'testUser',
|
||
|
'email' => 'test@example.org'
|
||
|
]);
|
||
|
|
||
|
$this->assertInstanceOf('\App\Models\User', $user);
|
||
|
$this->assertEquals(false, $user->exists);
|
||
|
}
|
||
|
}
|