mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 04:42:59 +00:00
12 lines
246 B
PHP
12 lines
246 B
PHP
<?php
|
|
|
|
class Sabre_DAV_Exception_PaymentRequiredTest extends PHPUnit_Framework_TestCase {
|
|
|
|
function testGetHTTPCode() {
|
|
|
|
$ex = new Sabre_DAV_Exception_PaymentRequired();
|
|
$this->assertEquals(402, $ex->getHTTPCode());
|
|
|
|
}
|
|
|
|
}
|