Grails—Unit Testing View Rendering (with custom TagLib namespace quirk)

Background GroovyPageUnitTestMixin From the Grails guide, testing a view in a unit test involves: Annotating the Specification with: @TestMixin(GroovyPageUnitTestMixin). Calling render(view: '...', model: ...) or render(template: '...', model: ...) whose…

Continue ReadingGrails—Unit Testing View Rendering (with custom TagLib namespace quirk)

Some Docker Notes

  • Post author:
  • Post category:docker

Some Docker notes of commands for reference Images Listing images docker images Running images docker run <image name> docker run <repo name>/<image name> Building images Create a Dockerfile file with…

Continue ReadingSome Docker Notes