scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Mon, 24 Oct 2011 09:35:50 +0200
changeset 19 5b37cf0009bd
parent 2 f1b6c7418cb8
permissions -rw-r--r--
Imported hgeditor (from hg repo); .hgrc: use hgeditor

/*
 * Copyright ...
 */
package example

import org.scalatest.FlatSpec
import org.scalatest.matchers.ShouldMatchers

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}