1

我在使用 Play 2.1.1 中的 WithApplication 范围进行测试时遇到了一个有趣的问题。

这是我的代码:

import play.api.test.{FakeApplication, WithApplication}
import org.specs2.mutable.Specification

class TestSpec extends Specification {

  "Test" should {
    "fail" in {
      true === false
    }

    "fail as well" in new WithApplication() {
      true === false
    }

    "fail with extreme prejudice" in new WithApplication(FakeApplication()) {
      true === false
    }
  }
}

我希望所有这 3 个都失败,但在这种情况下,只有第一个失败。

[info] Total for specification TestSpec
[info] Finished in 21 ms
[info] 3 examples, 1 failure, 0 error
[info]
[error] Failed: : Total 4, Failed 1, Errors 0, Passed 3, Skipped 0
[error] Failed tests:
[error] TestSpec

我在这里缺少一些技巧吗?

我正在使用 Scala 2.10.2、sbt 0.12.2、Play 2.1.1 并在 Java 7 U40 上运行。

提前致谢。

4

1 回答 1

1

您应该尝试已修复此问题的最新版本的 Play 或最新版本的 specs2 (2.2.3)。

于 2013-10-10T23:16:23.040 回答