We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95f9d01 commit f4de754Copy full SHA for f4de754
test/ApplicationSpec.scala
@@ -13,8 +13,12 @@ import play.api.test.Helpers._
13
@RunWith(classOf[JUnitRunner])
14
class ApplicationSpec extends Specification {
15
16
-// "Application" should {
17
-//
+ "Application" should {
+
18
+ "run a dummy test" in {
19
+ true must beTrue
20
+ }
21
22
// "send 404 on a bad request" in new WithApplication{
23
// route(FakeRequest(GET, "/boum")) must beNone
24
// }
@@ -26,5 +30,5 @@ class ApplicationSpec extends Specification {
26
30
// contentType(home) must beSome.which(_ == "text/html")
27
31
// contentAsString(home) must contain ("Your new application is ready.")
28
32
29
-// }
33
34
}
0 commit comments