You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tests/ReactiveSwiftTests/FlattenSpec.swift
+35-11Lines changed: 35 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -645,22 +645,34 @@ class FlattenSpec: QuickSpec {
645
645
.flatMap(.latest){ _ inProperty(value:0)}
646
646
}
647
647
648
-
it("sould available to use contextual lookup for flatMap arbitrary error signal to arbitrary error signal"){
648
+
it("should be able to fallback to SignalProducer for contextual lookups with explicit inner value and error type parameters, given an upstream of arbitrary error type"){
@@ -835,22 +847,34 @@ class FlattenSpec: QuickSpec {
835
847
.flatMap(.latest){ _ inProperty(value:0)}
836
848
}
837
849
838
-
it("sould available to use contextual lookup for flatMap arbitrary error signal to arbitrary error signal"){
850
+
it("should be able to fallback to SignalProducer for contextual lookups with explicit inner value and error type parameters, given an upstream of arbitrary error type"){
it("sould available to use contextual lookup for arbitrary error signal then same value same error signal"){
2320
+
it("should be able to fallback to SignalProducer for contextual lookups without explicit value and error type parameters, given an upstream of arbitrary error type"){
2321
2321
_ =SignalProducer<Int,TestError>.empty
2322
-
.then(.init(value:0))
2322
+
.then(.empty)
2323
2323
}
2324
2324
2325
-
it("sould available to use contextual lookup for arbitrary error signal then other value same error signal"){
2325
+
it("should be able to fallback to SignalProducer for contextual lookups with explicit value and error type parameters, given an upstream of arbitary error type"){
0 commit comments