Skip to content

Files

Latest commit

 

History

History

.github

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

@DESCRIPTION@

Usage

Create a scripted test for your SBT plugin following the official guide.

Add the following line to the plugins.sbt file of your scripted test:

addSbtPlugin("@ORGANIZATION@" % "@NAME@" % "@VERSION@")

Add some tests to build.sbt:

munitSuites += "MySuite" -> new FunSuite {

  test("The most important question") {
    assertEquals("The meaning of life, the universe and everything else", "42")
  }

}

Add this to your test file so MUnit suites are executed:

> munitScripted

Contributors to this project

@CONTRIBUTORS_TABLE@