Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
longwa committed Oct 9, 2012
1 parent ef904a2 commit 0695c27
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions test/integration/guard/grails/SampleServiceSpec.groovy 100644 → 100755
@@ -1,17 +1,16 @@
package guard.grails
import grails.plugin.spock.IntegrationSpec

import spock.lang.*
import grails.plugin.spock.IntegrationSpec

class SampleServiceSpec extends IntegrationSpec {

def sampleService
def sampleService

def "injected sampleService is present"() {
when:
def msg = sampleService.helloWorld()
def "injected sampleService is present"() {
when:
def msg = sampleService.helloWorld()

then:
msg == "Hello World!"
}
then:
msg == "Hello World!"
}
}

0 comments on commit 0695c27

Please sign in to comment.