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.0.8.7 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.6 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.5 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.4 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.3 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.2 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.1 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.7.0 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.44 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.43 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.42 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.41 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.40 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.39 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.38 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.37 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.36 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.35 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.34 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.6.33 tracks/groovy/exercises/leap/LeapSpec.groovy