We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With an interceptor like this:
class ActionNameInterceptor { boolean before() { println "$controllerName $actionName $params" if(params.test == 'is set') { request.setAttribute('paramSet', 'param set') } return true } }
When running, the params is set, but when running tests, the params is not set.
params
See https://github.com/sbglasius/grailsInterceptorBugs interceptorbug.ActionNameInterceptorSpec#Test interceptor params should be set
interceptorbug.ActionNameInterceptorSpec#Test interceptor params should be set
The text was updated successfully, but these errors were encountered:
I will attempt a PR with the fixes
Sorry, something went wrong.
No branches or pull requests
With an interceptor like this:
When running, the
params
is set, but when running tests, theparams
is not set.See https://github.com/sbglasius/grailsInterceptorBugs
interceptorbug.ActionNameInterceptorSpec#Test interceptor params should be set
The text was updated successfully, but these errors were encountered: