-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new laws test for stackUnsafeMonad coverage
- Loading branch information
1 parent
56d6f54
commit ff665f4
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
15 changes: 15 additions & 0 deletions
15
laws/src/test/scala/cats/laws/discipline/MonadTestsTests.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package cats | ||
package laws | ||
package discipline | ||
|
||
import cats.instances.all._ | ||
import cats.laws.discipline.arbitrary._ | ||
import org.scalatest.FunSuite | ||
import org.typelevel.discipline.scalatest.Discipline | ||
|
||
class MonadTestsTests extends FunSuite with Discipline { | ||
// We don't use `stackUnsafeMonad` in our laws checking for instances in Cats, | ||
// so we confirm here that the laws pass for `Eval` (the monad instance for | ||
// which is actually stack safe, like all other monad instances in Cats.) | ||
checkAll("Eval[Int]", MonadTests[Eval].stackUnsafeMonad[Int, Int, Int]) | ||
} |