openstackid/app/tests/DiscoveryControllerTest.php
2013-11-05 18:53:42 -03:00

12 lines
259 B
PHP

<?php
class DiscoveryControllerTest extends TestCase
{
public function testIdpDiscovery()
{
$response = $this->call('GET', '/discovery');
//"application/xrds+xml"
$this->assertTrue($response->getStatusCode() === 200);
}
}