Completed
Push — dev ( 39ba5f...0b8cdb )
by Tristan
04:57 queued 04:51
created

JobPolicyTest::testAuthIdentifier()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 10
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Tests\Unit;
4
5
use App\Services\Auth;
6
7
class JobPolicyTest extends BasePolicyTest {
8
9
    public function testAuthIdentifier()
10
    {
11
        //TODO: write a real test
12
        //$authIdentity = factory(\App\Models\User::class)->make();
13
14
        $this->assertDatabaseMissing('users', [
15
            'email' => '[email protected]'
16
        ]);
17
18
        $this->assertEquals('123','123');
19
    }
20
}
21