summaryrefslogtreecommitdiff
path: root/contrib/scoverage/test/resources/hello-world/core/test/src/GreetSpec.scala
blob: ae5562f1eeb3943c428966b4113e44ab16763b77 (plain) (blame)
1
2
3
4
5
6
7
8
9
import org.scalatest._

class GreetSpec extends WordSpec with Matchers {
  "Greet" should {
    "work" in {
      Greet.greet("Nik", None) shouldBe("Hello, Nik!")
    }
  }
}