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.28 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.27 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.26 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.24 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.23 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.22 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.21 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.20 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.19 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.18 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.17 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.16 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.15 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.14 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.13 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.12 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.11 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.10 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.9 tracks/groovy/exercises/leap/LeapSpec.groovy
trackler-2.0.8.8 tracks/groovy/exercises/leap/LeapSpec.groovy