scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Tue, 03 May 2011 08:57:01 +0200
changeset 10 ca6892f0a9e8
parent 2 f1b6c7418cb8
permissions -rw-r--r--
Imported my .vim dir

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}