This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 388387c9e3 test: re-enable sitemesh3 tests
388387c9e3 is described below
commit 388387c9e3ba109af2f4fe1dd3b9117080162fbf
Author: James Daugherty <[email protected]>
AuthorDate: Fri Aug 15 22:42:36 2025 -0400
test: re-enable sitemesh3 tests
---
.../gsp-sitemesh3/src/integration-test/groovy/EndToEndSpec.groovy | 7 +++++++
settings.gradle | 4 ++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git
a/grails-test-examples/gsp-sitemesh3/src/integration-test/groovy/EndToEndSpec.groovy
b/grails-test-examples/gsp-sitemesh3/src/integration-test/groovy/EndToEndSpec.groovy
index 6cf1147873..7681080439 100644
---
a/grails-test-examples/gsp-sitemesh3/src/integration-test/groovy/EndToEndSpec.groovy
+++
b/grails-test-examples/gsp-sitemesh3/src/integration-test/groovy/EndToEndSpec.groovy
@@ -19,10 +19,12 @@
import grails.plugin.geb.ContainerGebSpec
import grails.testing.mixin.integration.Integration
+import spock.lang.PendingFeature
@Integration
class EndToEndSpec extends ContainerGebSpec {
+ @PendingFeature
def 'simple layout'() {
when:
go('endToEnd/simpleLayout')
@@ -33,6 +35,7 @@ class EndToEndSpec extends ContainerGebSpec {
</body></html>"""
}
+ @PendingFeature
def 'title in subtemplate'() {
when:
go('endToEnd/titleInSubtemplate')
@@ -44,6 +47,7 @@ class EndToEndSpec extends ContainerGebSpec {
</body></html>"""
}
+ @PendingFeature
def 'multiple levels of layouts'() {
when:
go('endToEnd/multipleLevelsOfLayouts')
@@ -54,6 +58,7 @@ class EndToEndSpec extends ContainerGebSpec {
</body></html>"""
}
+ @PendingFeature
def 'parameters'() {
when:
go('endToEnd/parameters')
@@ -62,6 +67,7 @@ class EndToEndSpec extends ContainerGebSpec {
pageSource == """<html><head></head><body><h1>pageProperty:
here!</h1></body></html>"""
}
+ @PendingFeature
def 'parameters with logic'() {
when:
go('endToEnd/parametersWithLogic')
@@ -70,6 +76,7 @@ class EndToEndSpec extends ContainerGebSpec {
pageSource == "<html><head></head><body>good</body></html>"
}
+ @PendingFeature
def 'multiline title'() {
when:
go('endToEnd/multilineTitle')
diff --git a/settings.gradle b/settings.gradle
index 8aa397c45a..3f0b49dc48 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -351,7 +351,7 @@ include(
'grails-test-examples-geb',
'grails-test-examples-gorm',
'grails-test-examples-gsp-layout',
- //TODO: 'grails-test-examples-gsp-sitemesh3',
+ 'grails-test-examples-gsp-sitemesh3',
'grails-test-examples-gsp-spring-boot',
'grails-test-examples-issue-698-domain-save-npe',
'grails-test-examples-hyphenated',
@@ -379,7 +379,7 @@ project(':grails-test-examples-geb').projectDir =
file('grails-test-examples/geb
project(':grails-test-examples-namespaces').projectDir =
file('grails-test-examples/namespaces')
project(':grails-test-examples-gorm').projectDir =
file('grails-test-examples/gorm')
project(':grails-test-examples-gsp-layout').projectDir =
file('grails-test-examples/gsp-layout')
-//TODO: project(':grails-test-examples-gsp-sitemesh3').projectDir =
file('grails-test-examples/gsp-sitemesh3')
+project(':grails-test-examples-gsp-sitemesh3').projectDir =
file('grails-test-examples/gsp-sitemesh3')
project(':grails-test-examples-gsp-spring-boot').projectDir =
file('grails-test-examples/gsp-spring-boot/app')
project(':grails-test-examples-issue-698-domain-save-npe').projectDir =
file('grails-test-examples/issue-698-domain-save-npe')
project(':grails-test-examples-hyphenated').projectDir =
file('grails-test-examples/hyphenated')