forked from friendica/friendica-addons
13 lines
246 B
PHP
13 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());
|
|
|
|
}
|
|
|
|
}
|