All Downloads are FREE. Search and download functionalities are using the official Maven repository.

grails.gorm.tests.QueryByNullSpec.groovy Maven / Gradle / Ivy

There is a newer version: 2023.0.1
Show newest version
package grails.gorm.tests

class QueryByNullSpec extends GormDatastoreSpec {

    void 'Test passing null as the sole argument to a dynamic finder multiple times'() {
        // see GRAILS-3463
        when:
            def people = Person.findAllByLastName(null)

        then:
            !people

        when:
            people - Person.findAllByLastName(null)

       then:
            !people
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy