Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created October 12, 2012 14:14
Show Gist options
  • Save hhariri/3879379 to your computer and use it in GitHub Desktop.
Save hhariri/3879379 to your computer and use it in GitHub Desktop.
package samples
import kspec.framework.*
spec public fun calculatorSpecs() {
given("a calculator", {
val calculator = Calculator()
on("calling sum with two numbers", {
val sum = calculator.sum(2, 4)
it("should return the result of adding the first number to the second", {
shouldEqual(6, sum)
})
})
})
}
@jfromaniello
Copy link

your example might look like this:

describe("calculator", {
  val calculator = Calculator()
  describe("adding two numbers", {
    val sum = calculator.sum(2, 4)
    it("should return the result of adding the first number to the second", {
      shouldEqual(6, sum)
    })
  })
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment