I am having an issue with the "Getting Started with Grails" tutorial from the Grails website. It is having me create a custom codec in the utils directory. I have created the codec and it works in the application, however when I add the codec to my controller unit test, as the tutorial suggests, it fails. Here is the message I get when I run "grails test-app UserController -unit":
"No such property: SHACodec for class: racetrack.UserControllerTests"
I have tried using the loadCodec() method to include the codec, but got the same message.
Does anyone have any suggestions on how to resolve this unit test issue? If it's an import issue, what would the import path be for my SHACodec.groovy file if it is in the /grails-app/utils/?
My tutorial code is available for download at http://arlitt.com/racetrack.zip.