Askedio\Tests\IntegrationTest::testRestore PHP Method

testRestore() public method

public testRestore ( )
    public function testRestore()
    {
        $this->createUserRaw();
        User::first()->delete();
        User::withTrashed()->first()->restore();
        $this->seeInDatabase('users', ['deleted_at' => null]);
        $this->seeInDatabase('profiles', ['deleted_at' => null]);
        $this->seeInDatabase('addresses', ['deleted_at' => null]);
    }