1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Renamed **/*Spec.groovy to **/*Tests.groovy to better follow conventions

This commit is contained in:
Rob Winch
2011-12-28 17:09:51 -06:00
parent 8ca2927761
commit 044861eb20
4 changed files with 4 additions and 4 deletions
@@ -25,7 +25,7 @@ import geb.spock.*
*
* @author Rob Winch
*/
class BaseSpec extends GebReportingSpec {
class AbstractCasTests extends GebReportingSpec {
/**
* All relative urls will be interpreted against this. The host can change based upon a system property. This
@@ -32,7 +32,7 @@ import spock.lang.*
* @author Rob Winch
*/
@Stepwise
class CasSampleProxySpec extends BaseSpec {
class CasSampleProxyTests extends AbstractCasTests {
HttpClient client = new HttpClient()
@Shared String casServerUrl = LoginPage.url.replaceFirst('/login','')
@Shared JettyCasService service = new JettyCasService().init(casServerUrl)
@@ -30,7 +30,7 @@ import spock.lang.Stepwise;
* @author Rob Winch
*/
@Stepwise
class CasSampleSpec extends BaseSpec {
class CasSampleTests extends AbstractCasTests {
@Shared String casServerLogoutUrl = LoginPage.url.replaceFirst('/login','/logout')
def 'access home page with unauthenticated user succeeds'() {