Last active
August 29, 2015 14:21
-
-
Save mkows/ad0b06738ff6b933f8b0 to your computer and use it in GitHub Desktop.
scala-spec-min.template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if ((${PACKAGE_NAME} && ${PACKAGE_NAME} != ""))package ${PACKAGE_NAME} #end | |
import org.scalatest.concurrent.ScalaFutures | |
import org.scalatest.{Matchers, WordSpecLike} | |
class ${NAME} extends WordSpecLike with Matchers with ScalaFutures { | |
"${NAME}" should { | |
"" in { | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pretty minimal IntelliJ template for Scala Specs
Usage:
IntelliJ Preferences > Editor > File and Code Templates:
Depencency:
"org.scalatest" %% "scalatest" % "2.2.4" % "test"