John Bowen

Results 6 comments of John Bowen

I just realized this package is deprecated. I'll leave the issue and PR open for others.

Also note that the documentation is incorrect or at least misleading: "In the simplest case you can use f:all to render a field for every property of a bean (the...

I had also been working on #17 but I wasn't sure how to submit a pull request. Assuming I cloned this repo, can I just do a commit -a -m"Fixed...

In the Second Ed of the pdf at: 110 | GETTING STARTED WITH GRAILS -SECOND EDITION Add this test to UserTests: ``` void testUniqueConstraint(){ def jdoe = new User(login:"jdoe") def...

Also, sorry forgot to add this: def badUser = new User(login:"jdoe",password:"1234") Furthermore, I found that with grails 2.0.4 I need to add: mockForConstraintsTests(User) for the: assertEquals 'unique', badUser.errors['login'] to return...

try # grails clean # grails run-app