emailer/src/test/scala/cz/xelfi/quoridor/emailer/MySpec.scala
branchscala-emailer
changeset 153 ac818c32c6e9
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/emailer/src/test/scala/cz/xelfi/quoridor/emailer/MySpec.scala	Thu Nov 26 20:06:56 2009 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +package org.apidesign.emailer
     1.5 +
     1.6 +import org.specs._
     1.7 +import org.specs.runner.{ConsoleRunner, JUnit4}
     1.8 +
     1.9 +class MySpecTest extends JUnit4(MySpec)
    1.10 +//class MySpecSuite extends ScalaTestSuite(MySpec)
    1.11 +object MySpecRunner extends ConsoleRunner(MySpec)
    1.12 +
    1.13 +object MySpec extends Specification {
    1.14 +  "This wonderful system" should {
    1.15 +    "save the world" in {
    1.16 +      val list = Nil
    1.17 +      list must beEmpty
    1.18 +    }
    1.19 +  }
    1.20 +}