1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/REST/NextCloudNews/TestNCNVersionDiscovery.php
J. King 25d9158171 Fix output of NCN version list
List is supposed to be contained in a JSON object, not a bare list
2017-03-19 21:54:28 -04:00

23 lines
No EOL
555 B
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
use JKingWeb\NewsSync\Rest\Request;
use JKingWeb\NewsSync\Rest\Response;
class TestNCNVersionDiscovery extends \PHPUnit\Framework\TestCase {
use Test\Tools;
function setUp() {
$conf = new Conf();
$this->data = new Test\RuntimeData($conf);
}
function testVersionList() {
$exp = new Response(200, ['apiLevels' => ['v1-2']]);
$req = new Request("GET", "/");
$h = new Rest\NextCloudNews\Versions($this->data);
$res = $h->dispatch($req);
$this->assertEquals($exp, $res);
}
}