Skip to content

Instantly share code, notes, and snippets.

@andy-gray
andy-gray / LineCountTest.scala
Created November 6, 2012 10:01
Line count kata at coding dojo
package linecount
import org.scalatest._
import matchers.ShouldMatchers
class LineCountTest extends FlatSpec with ShouldMatchers {
"the Linecounter" should "think an empty string has zero lines" in {
countLinesIn("") should equal(0)
}