Skip to content

Commit c59064f

Browse files
authored
Merge pull request #159 from armanbilge/pr/i101
Better `Eq[Signal]`
2 parents c58fecd + 70be22b commit c59064f

File tree

1 file changed

+11
-20
lines changed

1 file changed

+11
-20
lines changed

frp/src/test/scala/calico/frp/SignalSuite.scala

+11-20
Original file line numberDiff line numberDiff line change
@@ -79,28 +79,19 @@ class SignalSuite extends DisciplineSuite, TestInstances:
7979
)
8080

8181
given [A: Eq](using Eq[IO[List[(A, FiniteDuration)]]]): Eq[Signal[IO, A]] = Eq.by { sig =>
82-
IO.ref(List.empty[(A, FiniteDuration)]).flatMap { ref =>
83-
TestControl.executeEmbed(
84-
sig
85-
.discrete
86-
.evalMap(IO.realTime.tupleLeft(_))
87-
.evalMap(x => ref.update(x :: _))
88-
.compile
89-
.drain
90-
.timeoutTo(Long.MaxValue.nanos, IO.unit),
91-
seed = Some(testControlSeed)
92-
) *> ref.get.map(_.distinctBy(_._2))
93-
}
82+
TestControl.executeEmbed(
83+
sig
84+
.discrete
85+
.evalMap(IO.realTime.tupleLeft(_))
86+
.interruptAfter(Long.MaxValue.nanos)
87+
.compile
88+
.to(List)
89+
.map(_.reverse.distinctBy(_._2)), // reverse so latest wins in `distinctBy`
90+
seed = Some(testControlSeed)
91+
)
9492
}
9593

9694
given Ticker = Ticker()
9795

9896
// it is stack-safe, but expensive to test
99-
MonadTests[Signal[IO, _]].stackUnsafeMonad[Int, Int, Int].all.properties.foreach {
100-
case (id, prop) =>
101-
// TODO investigate failures #101
102-
if !Set(
103-
"monad (stack-unsafe).flatMap associativity",
104-
"monad (stack-unsafe).semigroupal associativity").contains(id)
105-
then property(id)(prop)
106-
}
97+
checkAll("Signal", MonadTests[Signal[IO, _]].stackUnsafeMonad[Int, Int, Int])

0 commit comments

Comments
 (0)