Index: dealer-service/trunk/test/functional/com/lemans/media/MediaFunctionalSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/functional/com/lemans/media/MediaFunctionalSpec.groovy (.../MediaFunctionalSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/functional/com/lemans/media/MediaFunctionalSpec.groovy (.../MediaFunctionalSpec.groovy) (revision 10083) @@ -1,10 +1,8 @@ package com.lemans.media import com.lemans.testing.DealerApiFunctionalSpec -import spock.lang.Ignore import spock.lang.Issue import spock.lang.Shared -import spock.lang.Stepwise //@Stepwise class MediaFunctionalSpec extends DealerApiFunctionalSpec { @@ -327,11 +325,7 @@ def 'can forward media'() { given: domain = 18 - Map json = [toEmail: "vramisetti@parts-unltd.com", media: [mediaId]] -/* String json = '''{ -"toEmail": "vramisetti@parts-unltd.com", -"media": ["$mediaId"] -}'''*/ + Map json = [toEmail: 'vramisetti@parts-unltd.com', media: [mediaId]] path([entityClass: 'dealer', entityId: 'TEST99'], 'forward') ok() @@ -345,7 +339,7 @@ def 'can delete a media' () { given: ok() - File content = new File(FOLDER + "/$mediaId"+'.csv') << 'stuff' + File content = new File(FOLDER + "/$mediaId" + '.csv') << 'stuff' path([entityClass: 'dealer', entityId: 'TEST99'], mediaId) expect: Index: dealer-service/trunk/test/integration/com/lemans/salesman/SalesmanWeeklyRecapIntegrationSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/integration/com/lemans/salesman/SalesmanWeeklyRecapIntegrationSpec.groovy (.../SalesmanWeeklyRecapIntegrationSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/integration/com/lemans/salesman/SalesmanWeeklyRecapIntegrationSpec.groovy (.../SalesmanWeeklyRecapIntegrationSpec.groovy) (revision 10083) @@ -2,7 +2,6 @@ import com.dumbster.smtp.SmtpMessage import grails.test.spock.IntegrationSpec -import spock.lang.IgnoreRest import java.time.LocalDate import java.time.Year Index: dealer-service/trunk/test/functional/com/lemans/sales/goals/RepReportFunctionalSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/functional/com/lemans/sales/goals/RepReportFunctionalSpec.groovy (.../RepReportFunctionalSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/functional/com/lemans/sales/goals/RepReportFunctionalSpec.groovy (.../RepReportFunctionalSpec.groovy) (revision 10083) @@ -10,7 +10,6 @@ def 'can find the SalesGoal repReport'() { given: expectPartialStandardResponse = true - int id = 2 queryParams.pageSize = 10 path = createPath(salesGoal: 10) Index: dealer-service/trunk/test/integration/com/lemans/rider/MonthlyReportServiceIntegrationSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/integration/com/lemans/rider/MonthlyReportServiceIntegrationSpec.groovy (.../MonthlyReportServiceIntegrationSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/integration/com/lemans/rider/MonthlyReportServiceIntegrationSpec.groovy (.../MonthlyReportServiceIntegrationSpec.groovy) (revision 10083) @@ -484,7 +484,7 @@ when: MonthlyReport monthlyReport = monthlyReportManagerService.findReportByMonth(Dealer.read(dealerCode), yearMonth) monthlyReportManagerService.sendMonthlyReportEmail(monthlyReport, domain) - SmtpMessage msg = dumbster.messages[0] + //SmtpMessage msg = dumbster.messages[0] then: dumbster.messageCount == 1 Index: dealer-service/trunk/test/integration/com/lemans/rider/RaceResultServiceIntegrationSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/integration/com/lemans/rider/RaceResultServiceIntegrationSpec.groovy (.../RaceResultServiceIntegrationSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/integration/com/lemans/rider/RaceResultServiceIntegrationSpec.groovy (.../RaceResultServiceIntegrationSpec.groovy) (revision 10083) @@ -120,7 +120,7 @@ when: RaceResult raceResult = raceResultManagerService.updateRaceResult(values, dealerCode, 1, username) - SmtpMessage msg = dumbster.messages[0] + //SmtpMessage msg = dumbster.messages[0] then: raceResult.comment == 'updatedComment' Index: dealer-service/trunk/test/functional/com/lemans/samples/SampleKitFunctionalSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/functional/com/lemans/samples/SampleKitFunctionalSpec.groovy (.../SampleKitFunctionalSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/functional/com/lemans/samples/SampleKitFunctionalSpec.groovy (.../SampleKitFunctionalSpec.groovy) (revision 10083) @@ -1,8 +1,7 @@ package com.lemans.samples -import groovy.json.JsonBuilder - import com.lemans.testing.DealerServiceFunctionalSpec +import groovy.json.JsonBuilder import spock.lang.Shared class SampleKitFunctionalSpec extends DealerServiceFunctionalSpec { @@ -207,7 +206,6 @@ def 'can NOT update an invalid SampleKit'() { given: - int id = 138 Map sampleKit = createSampleKit('blah'.padRight(201, '_')) sampleKit.SampleKit.sampleKitId = sampleKitId String json = new JsonBuilder(sampleKit) Index: dealer-service/trunk/test/functional/com/lemans/salesman/SalesmanWeeklyRecapFunctionalSpec.groovy =================================================================== diff -u -r10082 -r10083 --- dealer-service/trunk/test/functional/com/lemans/salesman/SalesmanWeeklyRecapFunctionalSpec.groovy (.../SalesmanWeeklyRecapFunctionalSpec.groovy) (revision 10082) +++ dealer-service/trunk/test/functional/com/lemans/salesman/SalesmanWeeklyRecapFunctionalSpec.groovy (.../SalesmanWeeklyRecapFunctionalSpec.groovy) (revision 10083) @@ -1,7 +1,6 @@ package com.lemans.salesman import com.lemans.testing.DealerApiFunctionalSpec -import spock.lang.IgnoreRest /** * Created by vramisetti on 8/3/2016.