Contains the coldfusion unit testing framework mxunit v2.1.3
1.4K
Mxunit is a unit testing framework for coldfusion. It was developed a bunch of by people other than me.
=============
docker run -it --name mxunit finalcut/mxunit
After the container starts feel free to exit it. The container does not need to be running to be used.
docker run -d -p 8880:80 -v /var/www:/var/www --volumes-from mxunit finalcut/coldfusion10
The --volumes-from switch is what exposes the volume /tmp/mxunit from the finalcut/mxunit container. Once your coldfusion container is running you will probably want to add a global mapping to mxunit
<cfscript>
// Login is always required.
adminObj = createObject("component","cfide.adminapi.administrator");
adminObj.login("Adm1n$");
mapObj = createObject("component", "cfide.adminapi.extensions");
mapObj.setMapping("mxunit", "/tmp/mxunit");
</cfscript>
Content type
Image
Digest
sha256:e8564c23c…
Size
46.3 MB
Last updated
almost 11 years ago
docker pull finalcut/mxunit