scalatest example specfile
author"Tomas Zeman <tzeman@volny.cz>"
Tue, 19 Oct 2010 09:46:57 +0200
changeset 2 f1b6c7418cb8
parent 1 bb4a42b3b61f
child 3 d45ef9f0c1ae
scalatest example specfile
scala/scalatest/exampleSpec.scala
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scala/scalatest/exampleSpec.scala	Tue Oct 19 09:46:57 2010 +0200
@@ -0,0 +1,15 @@
+/*
+ * Copyright ...
+ */
+package example
+
+import org.scalatest.FlatSpec
+import org.scalatest.matchers.ShouldMatchers
+
+class ExampleSpec extends FlatSpec with ShouldMatchers {
+
+  "Example" should "do something" in {
+
+  }
+
+}