chabala
3/17/2017 - 7:34 PM

IntelliJ IDEA Live Templates for working with ScalaTest

IntelliJ IDEA Live Templates for working with ScalaTest

<templateSet group="surround">
  <template name="desc" value="describe(&quot;$END$&quot;) {&#10;    $SELECTION$&#10;}&#10;" description="Surround with describe block" toReformat="true" toShortenFQNames="true">
    <context>
      <option name="SCALA_STRING" value="false" />
      <option name="SCALA_COMMENT" value="false" />
      <option name="SCALA_XML" value="false" />
      <option name="SCALA" value="true" />
    </context>
  </template>
  <template name="it" value="it(&quot;should $END$&quot;) {&#10;    $SELECTION$&#10;}&#10;" description="Surround with it block" toReformat="true" toShortenFQNames="true">
    <context>
      <option name="SCALA_STRING" value="false" />
      <option name="SCALA_COMMENT" value="false" />
      <option name="SCALA_XML" value="false" />
      <option name="SCALA" value="true" />
    </context>
  </template>
</templateSet>