scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Wed, 02 Jan 2013 14:29:06 +0100
changeset 27 3600c419f516
parent 2 f1b6c7418cb8
permissions -rw-r--r--
config/.tmux.conf: more screen-like bindings

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}