Skip to content

Instantly share code, notes, and snippets.

@asierba
Forked from sleepyfox/Build.sbt
Created May 23, 2014 11:07
Show Gist options
  • Save asierba/1f20f5fdebf77db32cb7 to your computer and use it in GitHub Desktop.
Save asierba/1f20f5fdebf77db32cb7 to your computer and use it in GitHub Desktop.
name := "Name goes here"
version := "0.0.1"
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"
// src/test/scala/testTextSizer.scala
import org.scalatest._
class TestTextSizer extends FunSpec with ShouldMatchers {
def sizer(x : List[Char]) = {
0
}
describe("A text sizer") {
it("should give length zero") {
sizer(List()) should be (0)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment