Sha256: 063138db79b81000cdcfa41c1150ad03ba37edb10dca0fbde9359162bf5c1317

Contents?: true

Size: 639 Bytes

Versions: 148

Compression:

Stored size: 639 Bytes

Contents

@Grab('org.spockframework:spock-core:1.0-groovy-2.4')
import spock.lang.*

class LeapSpec extends Specification {

    def 'a year not divisible by 4 is not a leap year'() {
        expect: new Year(2015).isLeapYear() == false
    }

    @Ignore
    def 'a year divisible by 4, but not 100, is a leap year'() {
        expect: new Year(2016).isLeapYear() == true
    }

    @Ignore
    def 'a year divisible by 100, but not 400, is not a leap year'() {
        expect: new Year(2100).isLeapYear() == false
    }

    @Ignore
    def 'a year divisible by 400 is a leap year'() {
        expect: new Year(2000).isLeapYear() == true
    }

}

Version data entries

148 entries across 148 versions & 1 rubygems

Version Path
trackler-2.1.0.32 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.31 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.30 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.29 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.28 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.27 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.26 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.25 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.24 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.23 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.22 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.21 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.20 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.19 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.18 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.17 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.16 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.15 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.14 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.1.0.13 tracks/groovy/exercises/leap/LeapSpec.groovy