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.48 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.47 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.46 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.45 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.44 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.43 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.42 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.41 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.40 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.39 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.38 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.37 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.36 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.35 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.34 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.33 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.32 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.31 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.30 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.29 tracks/groovy/exercises/leap/LeapSpec.groovy