mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
Convert unit tests to munit
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
package docspell.joex.analysis
|
||||
|
||||
import minitest._
|
||||
import munit._
|
||||
import NerFile.Pattern
|
||||
import java.{util => ju}
|
||||
|
||||
object NerFileTest extends SimpleTestSuite {
|
||||
class NerFileTest extends FunSuite {
|
||||
|
||||
test("create valid case insensitive patterns") {
|
||||
val names = List(
|
||||
|
@ -1,9 +1,9 @@
|
||||
package docspell.joex.scheduler
|
||||
|
||||
import docspell.common.Priority
|
||||
import minitest.SimpleTestSuite
|
||||
import munit._
|
||||
|
||||
object CountingSchemeSpec extends SimpleTestSuite {
|
||||
class CountingSchemeSpec extends FunSuite {
|
||||
|
||||
test("counting") {
|
||||
val cs = CountingScheme(2, 1)
|
||||
|
Reference in New Issue
Block a user