diff --git a/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalazSuite.scala b/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalazSuite.scala new file mode 100644 index 000000000..6d9cc6c53 --- /dev/null +++ b/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalazSuite.scala @@ -0,0 +1,21 @@ +package org.scalafmt.community.other + +import org.scalafmt.community.common.CommunityRepoSuite + +import scala.meta._ + +abstract class CommunityScalazSuite(name: String) + extends CommunityRepoSuite("https://github.com/scalaz/scalaz.git", name) + +class CommunityScalaz_7_2_Suite extends CommunityScalazSuite("scalaz-7.2") { + + override protected def builds = + Seq(getBuild("v7.2.36", dialects.Scala213, 417)) + +} + +class CommunityScalaz_7_3_Suite extends CommunityScalazSuite("scalaz-7.3") { + + override protected def builds = Seq(getBuild("v7.3.8", dialects.Scala213, 420)) + +}