Merge pull request #3072 from ceilfors/fix-doc

* fix-doc:
  Remove spock caveat that was fixed in 1.0
This commit is contained in:
Stephane Nicoll 2015-06-04 14:54:26 +02:00
commit 0d6c197c39
1 changed files with 0 additions and 17 deletions

View File

@ -2954,23 +2954,6 @@ If you wish to use Spock to test a Spring Boot application you should add a depe
on Spock's `spock-spring` module to your application's build. `spock-spring` integrates
Spring's test framework into Spock.
Please note that you cannot use the `@SpringApplicationConfiguration` annotation that was
<<boot-features-testing-spring-boot-applications,described above>> as Spock
https://code.google.com/p/spock/issues/detail?id=349[does not find the
`@ContextConfiguration` meta-annotation]. To work around this limitation, you should use
the `@ContextConfiguration` annotation directly and configure it to use the Spring
Boot specific context loader:
[source,groovy,indent=0]
----
@ContextConfiguration(loader = SpringApplicationContextLoader.class)
class ExampleSpec extends Specification {
// ...
}
----
NOTE: The annotations <<boot-features-testing-spring-boot-applications,described above>>
can be used with Spock, i.e. you can annotate your `Specification` with
`@WebIntegrationTest` to suit the needs of your tests.