File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
grails-test-examples/gsp-layout/src/integration-test/groovy Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1919
2020import grails.plugin.geb.ContainerGebSpec
2121import grails.testing.mixin.integration.Integration
22+ import spock.lang.PendingFeature
2223
2324@Integration
2425class EndToEndSpec extends ContainerGebSpec {
2526
27+ @PendingFeature
2628 def ' simple layout' () {
2729 when :
2830 go(' endToEnd/simpleLayout' )
@@ -33,6 +35,7 @@ class EndToEndSpec extends ContainerGebSpec {
3335</body></html>"""
3436 }
3537
38+ @PendingFeature
3639 def ' title in subtemplate' () {
3740 when :
3841 go(' endToEnd/titleInSubtemplate' )
@@ -44,6 +47,7 @@ class EndToEndSpec extends ContainerGebSpec {
4447</body></html>"""
4548 }
4649
50+ @PendingFeature
4751 def ' multiple levels of layouts' () {
4852 when :
4953 go(' endToEnd/multipleLevelsOfLayouts' )
@@ -54,6 +58,7 @@ class EndToEndSpec extends ContainerGebSpec {
5458</body></html>"""
5559 }
5660
61+ @PendingFeature
5762 def ' parameters' () {
5863 when :
5964 go(' endToEnd/parameters' )
@@ -62,6 +67,7 @@ class EndToEndSpec extends ContainerGebSpec {
6267 pageSource == """ <html><head></head><body><h1>pageProperty: here!</h1></body></html>"""
6368 }
6469
70+ @PendingFeature
6571 def ' parameters with logic' () {
6672 when :
6773 go(' endToEnd/parametersWithLogic' )
@@ -70,6 +76,7 @@ class EndToEndSpec extends ContainerGebSpec {
7076 pageSource == " <html><head></head><body>good</body></html>"
7177 }
7278
79+ @PendingFeature
7380 def ' multiline title' () {
7481 when :
7582 go(' endToEnd/multilineTitle' )
Original file line number Diff line number Diff line change @@ -379,7 +379,7 @@ project(':grails-test-examples-geb').projectDir = file('grails-test-examples/geb
379379project(' :grails-test-examples-namespaces' ). projectDir = file(' grails-test-examples/namespaces' )
380380project(' :grails-test-examples-gorm' ). projectDir = file(' grails-test-examples/gorm' )
381381project(' :grails-test-examples-gsp-layout' ). projectDir = file(' grails-test-examples/gsp-layout' )
382- // TODO: project(':grails-test-examples-gsp-sitemesh3').projectDir = file('grails-test-examples/gsp-sitemesh3')
382+ project(' :grails-test-examples-gsp-sitemesh3' ). projectDir = file(' grails-test-examples/gsp-sitemesh3' )
383383project(' :grails-test-examples-gsp-spring-boot' ). projectDir = file(' grails-test-examples/gsp-spring-boot/app' )
384384project(' :grails-test-examples-issue-698-domain-save-npe' ). projectDir = file(' grails-test-examples/issue-698-domain-save-npe' )
385385project(' :grails-test-examples-hyphenated' ). projectDir = file(' grails-test-examples/hyphenated' )
You can’t perform that action at this time.
0 commit comments