I'm trying to test a PUT in a functional test in Play Framework 1.2.3.
I gone through the API of FunctionalTest and found these methods:
public static Response PUT(Object url, String contenttype, String body)
public static Response PUT(Request request, Object url, String contenttype, String body) {
My question is: How do you build the body value, to simulate an HTML Form submission?
Thnaks