summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php')
-rw-r--r--admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php b/admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php
new file mode 100644
index 0000000..7427794
--- /dev/null
+++ b/admin/survey/minify/vendor/intervention/httpauth/tests/DigestUserTest.php
@@ -0,0 +1,12 @@
+<?php
+
+use Intervention\Httpauth\DigestUser;
+
+class DigestUserTest extends PHPUnit_Framework_TestCase
+{
+ public function testDigestUserCreation()
+ {
+ $user = new DigestUser;
+ $this->assertInstanceOf('\Intervention\Httpauth\DigestUser', $user);
+ }
+}