我正在为我的应用程序编写一些测试,这些测试有望返回Json响应,我希望通过使用Behat来确保它。
Scenario: Response is json
Given I am on the domain "api.mydomain.net"
When I call the webservice "api" with GET
Then the webservice response content type is "application/json"
我研究了Behat的文档,但找不到任何有用的资源来断言响应类型。
是否有人遇到过相同的情况并提出了解决方案?