Sha256: b1284eca0c2fff04aaed52579b673591323692995c4d5a4b70fa9601fd6c6ddb
Contents?: true
Size: 382 Bytes
Versions: 102
Compression:
Stored size: 382 Bytes
Contents
import org.scalatest.{Matchers, FunSuite} class HelloWorldTest extends FunSuite with Matchers { test("Without name") { HelloWorld.hello() should be ("Hello, World!") } test("with name") { pending HelloWorld.hello("Jane") should be ("Hello, Jane!") } test("with umlaut name") { pending HelloWorld.hello("Jürgen") should be ("Hello, Jürgen!") } }
Version data entries
102 entries across 102 versions & 1 rubygems