This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch profiles-apache-coordinates in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit ba49379498df5284576c81c82c6b21f963576da8 Author: James Fredley <[email protected]> AuthorDate: Wed Apr 30 13:33:13 2025 -0400 Tests that are now passing --- .../integration-test/groovy/functionaltests/ErrorsFunctionalSpec.groovy | 1 - .../groovy/functionaltests/InterceptorFunctionalSpec.groovy | 1 - .../app2/src/integration-test/groovy/app2/ErrorsControllerSpec.groovy | 1 - .../test/groovy/grails/plugin/externalconfig/ExternalConfigSpec.groovy | 1 - 4 files changed, 4 deletions(-) diff --git a/grails-test-examples/app1/src/integration-test/groovy/functionaltests/ErrorsFunctionalSpec.groovy b/grails-test-examples/app1/src/integration-test/groovy/functionaltests/ErrorsFunctionalSpec.groovy index 97a27350c2..39d7012709 100644 --- a/grails-test-examples/app1/src/integration-test/groovy/functionaltests/ErrorsFunctionalSpec.groovy +++ b/grails-test-examples/app1/src/integration-test/groovy/functionaltests/ErrorsFunctionalSpec.groovy @@ -39,7 +39,6 @@ class ErrorsFunctionalSpec extends ContainerGebSpec { driver.pageSource.contains 'Message = Something bad' } - @PendingFeature(reason='pageSource does not contain Message = Something bad') void "Test 500 mappings for custom exceptions"() { when:"An action that throws a custom error that is handled by a 500 mapping in UrlMappings.groovy" go '/demo/throwCustomError' diff --git a/grails-test-examples/app1/src/integration-test/groovy/functionaltests/InterceptorFunctionalSpec.groovy b/grails-test-examples/app1/src/integration-test/groovy/functionaltests/InterceptorFunctionalSpec.groovy index fb48f4dac2..adaf191fca 100644 --- a/grails-test-examples/app1/src/integration-test/groovy/functionaltests/InterceptorFunctionalSpec.groovy +++ b/grails-test-examples/app1/src/integration-test/groovy/functionaltests/InterceptorFunctionalSpec.groovy @@ -28,7 +28,6 @@ import spock.lang.PendingFeature class InterceptorFunctionalSpec extends ContainerGebSpec { @Issue('apache/grails-core#9434') - @PendingFeature(reason = 'text does not match') void "Test that an interceptor exception is handled correctly"() { when: go '/errors/throwErrorInInterceptor' diff --git a/grails-test-examples/app2/src/integration-test/groovy/app2/ErrorsControllerSpec.groovy b/grails-test-examples/app2/src/integration-test/groovy/app2/ErrorsControllerSpec.groovy index 8868a9a64d..4706ed2402 100644 --- a/grails-test-examples/app2/src/integration-test/groovy/app2/ErrorsControllerSpec.groovy +++ b/grails-test-examples/app2/src/integration-test/groovy/app2/ErrorsControllerSpec.groovy @@ -30,7 +30,6 @@ import spock.lang.PendingFeature @Rollback class ErrorsControllerSpec extends ContainerGebSpec { - @PendingFeature(reason = 'pagesource does not contain the value') void "Test a global 500 mapping that maps to another controller"() { when:"An action that throws a error that is handled by a 500 mapping in UrlMappings.groovy" go '/test/throwGeneralError' diff --git a/grails-test-examples/external-configuration/src/test/groovy/grails/plugin/externalconfig/ExternalConfigSpec.groovy b/grails-test-examples/external-configuration/src/test/groovy/grails/plugin/externalconfig/ExternalConfigSpec.groovy index 0d6dfce485..4598c2d266 100644 --- a/grails-test-examples/external-configuration/src/test/groovy/grails/plugin/externalconfig/ExternalConfigSpec.groovy +++ b/grails-test-examples/external-configuration/src/test/groovy/grails/plugin/externalconfig/ExternalConfigSpec.groovy @@ -272,7 +272,6 @@ class ExternalConfigSpec extends Specification implements GrailsUnitTest { [file1, file2, file3]*.delete() } - @PendingFeatureIf(value={ os.windows }, reason = 'Wildcard is not working on windows OS') def "when getting config with wildcard files from user home"() { given: "Three files in home, where two matches the pattern" def home = new File(System.getProperty('user.home'))
