blob: f0419b84e250b6debf328a309275f96837ed7021 [file] [log] [blame]
package ${package}
import spock.lang.Shared
import spock.lang.Specification
class CalculateSpec extends Specification {
def "calculate sum"() {
when:
def total = 1 + 2
then:
3 == total
}
}