scala specs test always pass
This test passes even though it obviously shouldn't, it fails as expected from SBT:
import org.specs.Specification
import org.specs.runner.ScalaTest
class HelloWorldSpec extends Specification with ScalaTest {
"hello world has 11 characters" in {
"hello world".size must be(12)
}
}
Rich
Please sign in to leave a comment.