Skip to content

Commit

Permalink
Merge pull request #728 from ceedubs/monadfilter-consistency
Browse files Browse the repository at this point in the history
Add MonadFilter consistency to MonadFilter tests
  • Loading branch information
stew committed Dec 10, 2015
2 parents 32bb3a2 + f7a22b5 commit 7685147
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ trait MonadFilterTests[F[_]] extends MonadTests[F] {
name = "monadFilter",
parent = Some(monad[A, B, C]),
"monadFilter left empty" -> forAll(laws.monadFilterLeftEmpty[A, B] _),
"monadFilter right empty" -> forAll(laws.monadFilterRightEmpty[A, B] _))
"monadFilter right empty" -> forAll(laws.monadFilterRightEmpty[A, B] _),
"monadFilter consistency" -> forAll(laws.monadFilterConsistency[A, B] _))
}
}

Expand Down

0 comments on commit 7685147

Please sign in to comment.