We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95a14f commit 61920b8Copy full SHA for 61920b8
tests/TestCase/Webservice/WebserviceTest.php
@@ -200,6 +200,15 @@ public function testTransformResults()
200
$this->assertInstanceOf('\Muffin\Webservice\Model\Resource', $resources[0]);
201
}
202
203
+ public function testDescribe()
204
+ {
205
+ $service = new TestWebservice();
206
+
207
+ $result = $service->describe('test');
208
+ $this->assertInstanceOf('\Muffin\Webservice\Model\Schema', $result);
209
+ $this->assertEquals('Test', $result->name());
210
+ }
211
212
public function testDebugInfo()
213
{
214
$this->assertEquals([
0 commit comments