Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to obtain specifications (filtering the code) from my Spock tests printed in a file?

For example, for the following spec:

class CarSpec extends IntegrationSpec {

    def 'it should not retrieve deleted cars'() {
        given: 'a car'
            def car = new Car(uniqueName: 'carName')
            car.save()
        when: 'I delete the car'
            car.delete()
        then: 'it shouldn't find me the car on the DB'
            Car.find { uniqueName == 'carName' } == null
    }
}

should print something like:

CarSpec
    it should not retrieve deleted cars
        given a car
        when I delete the car
        then it shouldn't find me the car on the DB
share|improve this question

1 Answer

You could use one of the available third-party plugins (e.g. https://github.com/damage-control/report), or write your own Spock extension (see https://github.com/spockframework/smarter-testing-with-spock/tree/master/src/test/groovy/extension/custom).

share|improve this answer
Do you have any instructions on how to use damage-control plugin? the README file doesn't seem clear enough. – canotto90 Dec 4 '12 at 2:40
Best ask the author. – Peter Niederwieser Dec 4 '12 at 10:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.