@@ -79,28 +79,19 @@ class SignalSuite extends DisciplineSuite, TestInstances:
79
79
)
80
80
81
81
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
+ )
94
92
}
95
93
96
94
given Ticker = Ticker ()
97
95
98
96
// 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