blob: 563d2c738354c3c6f08bb96a76aa1a611bf91653 [file] [log] [blame]
package ioc.specs
import org.apache.tapestry5.ioc.EagerProxyReloadModule
class EagerLoadSpec extends AbstractRegistrySpecification {
def "proxied service does eager load"() {
expect:
EagerProxyReloadModule.eagerLoadServiceDidLoad == false
when:
buildRegistry EagerProxyReloadModule
performRegistryStartup()
then:
EagerProxyReloadModule.eagerLoadServiceDidLoad == true
}
}