We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe96ec commit 089f296Copy full SHA for 089f296
src/main/templates/FunctionalSpec.groovy
@@ -6,7 +6,7 @@ import grails.testing.mixin.integration.Integration
6
import geb.spock.*
7
8
/**
9
- * See http://www.gebish.org/manual/current/ for more instructions
+ * See https://groovy.apache.org/geb/manual/current/ for more instructions
10
*/
11
@Integration
12
@Rollback
@@ -18,11 +18,11 @@ class ${className}Spec extends GebSpec {
18
def cleanup() {
19
}
20
21
- void "test something"() {
22
- when:"The home page is visited"
+ void "test the homepage title"() {
+ when: "The homepage is visited"
23
go '/'
24
25
- then:"The title is correct"
+ then: "The title is correct"
26
title == "Welcome to Grace"
27
28
0 commit comments