# HG changeset patch # User "Tomas Zeman " # Date 1287474417 -7200 # Node ID f1b6c7418cb8d8cfb9e52f5518fc624f232374fe # Parent bb4a42b3b61fed130c3e66cdc94f2bfc780efe02 scalatest example specfile diff -r bb4a42b3b61f -r f1b6c7418cb8 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 { + + } + +}