summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php
blob: 74277945afbfd74eaa66591a97ffdd421a48bca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

use Intervention\Httpauth\DigestUser;

class DigestUserTest extends PHPUnit_Framework_TestCase
{
    public function testDigestUserCreation()
    {
        $user = new DigestUser;
        $this->assertInstanceOf('\Intervention\Httpauth\DigestUser', $user);
    }
}