Lukáš Fryč created ARQ-1627:
-------------------------------
Summary: Warp: refactor fluent observer specification API for clarity
Key: ARQ-1627
URL:
https://issues.jboss.org/browse/ARQ-1627
Project: Arquillian
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: Extension - Warp
Affects Versions: warp_1.0.0.Alpha6
Reporter: Lukáš Fryč
{code}
request().header("Content-Type").equalTo("application/json");
request().parameter().containsValue("id", "12345");
{code}
should be
{code}
request().header("Content-Type").equalTo("application/json");
request().parameter("id").contains("12345");
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira