WIP
[demos/example-siren] / spring-consumer / src / test / java / de / juplo / demos / pact / ContractTest.java
index 0e62c48..d500fa5 100644 (file)
@@ -33,13 +33,16 @@ public class ContractTest
             .headers(Map.of("Content-Type", "application/vnd.siren+json"))
             .body(LambdaDsl.newJsonBody(body ->
             {
-              body.arrayContaining("actions", actions ->
+              body.array("entities", entities ->
               {
-                actions.object(object ->
+                body.arrayContaining("actions", actions ->
                 {
-                  object.stringType("name","update");
-                  object.stringType("method", "PUT");
-                  object.matchUrl2("href", Matchers.regexp("\\d+", "1234"));
+                  actions.object(object ->
+                  {
+                    object.stringType("name","update");
+                    object.stringType("method", "PUT");
+                    object.matchUrl2("href", Matchers.regexp("\\d+", "1234"));
+                  });
                 });
               });
             }).build())