Please share:
Multi-part Form Integration Test in Grails
Thanks to this post I was able to figure it out. Wasn’t simple, but have the integration test working. I did notice that Grails automatically creates a “org.springframework.web.multipart.support.DefaultMultipartHttpServletRequest” and not just a “org.springframework.web.multipart.MultipartHttpServletRequest” request. But, all is well.
So, hopefully this helps someone else too.
Here’s my test:
Please comment: