Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created January 21, 2013 14:47
Show Gist options
  • Save hhariri/4586574 to your computer and use it in GitHub Desktop.
Save hhariri/4586574 to your computer and use it in GitHub Desktop.
Spek Example
given("a calculator", {
val calculator = Calculator()
on("calling sum with two numbers", {
val sum = calculator.sum(2, 3)
it("should return the sum of the two numbers", {
shouldEqual(5, sum)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment