Tagged Questions
2
votes
3answers
660 views
Upgrading from Grails 2.0.3 to 2.2.1: Server access Error: Connection refused
I'm trying to upgrade from Grails 2.0.3 to 2.2.1 as part of my Happy Trails application.
https://github.com/jamesward/happytrails/tree/grails2
The first thing I struggled with was getting Geb/Spock ...
3
votes
2answers
422 views
Can't install spock to grails 1.3.7 project
I created a simple hello world grails app using Grails 1.3.7:
grails create-app hello
grails create-controller hello
Then I try to install the spock plugin using:
grails install-plugin spock
And ...
3
votes
1answer
447 views
Is there any bug using both Spock and Spring Security plugin in same project?
I use both Spring and Spock plugins in my current project. I wrote a bunch of test cases in Spock. All are passing without any error (All are GREEN!). But the same tests are failing if I try to test ...
4
votes
2answers
877 views
Installing Grails Spock Plugin in 2.0.0M1
I'm kicking the tires on Grails 2.0.0M1 and Springsource Tool Suite 2.7.1, but I'm having problems installing the spock plugin.
When I run "grails install-plugin spock 0.6-groovy-1.8-SNAPSHOT" I get:
...
0
votes
1answer
354 views
Why is this method returning null even though the underlying controller is mocked using Spocks' Mock()?
import grails.plugin.spock.*
class EventControllerSpec extends ControllerSpec {
def "Creating a breadcrumb from an event"() {
given: "I have a named event"
def eventController = ...