Skip to content

Commit 8013f1a

Browse files
mbrandonwgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent 03ad0cc commit 8013f1a

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
#if canImport(Testing)
2-
import ComposableArchitecture
3-
import Testing
2+
import ComposableArchitecture
3+
import Testing
44

5-
@Suite
6-
struct EffectCancellationIsolationTests {
7-
@Test
8-
func testIsolation1() async {
9-
let store = await TestStore(initialState: Feature.State()) {
10-
Feature()
5+
@Suite
6+
struct EffectCancellationIsolationTests {
7+
@Test
8+
func testIsolation1() async {
9+
let store = await TestStore(initialState: Feature.State()) {
10+
Feature()
11+
}
12+
await store.send(.start)
13+
await store.receive(\.response) {
14+
$0.value = 42
15+
}
16+
await store.send(.stop)
1117
}
12-
await store.send(.start)
13-
await store.receive(\.response) {
14-
$0.value = 42
18+
19+
@Test
20+
func testIsolation2() async {
21+
let store = await TestStore(initialState: Feature.State()) {
22+
Feature()
23+
}
24+
await store.send(.start)
25+
await store.receive(\.response) {
26+
$0.value = 42
27+
}
28+
await store.send(.stop)
1529
}
16-
await store.send(.stop)
1730
}
1831

19-
@Test
20-
func testIsolation2() async {
21-
let store = await TestStore(initialState: Feature.State()) {
22-
Feature()
32+
@Reducer
33+
private struct Feature {
34+
struct State: Equatable {
35+
var value = 0
2336
}
24-
await store.send(.start)
25-
await store.receive(\.response) {
26-
$0.value = 42
37+
enum Action {
38+
case response(Int)
39+
case start
40+
case stop
2741
}
28-
await store.send(.stop)
29-
}
30-
}
31-
32-
@Reducer
33-
private struct Feature {
34-
struct State: Equatable {
35-
var value = 0
36-
}
37-
enum Action {
38-
case response(Int)
39-
case start
40-
case stop
41-
}
42-
enum CancelID { case longLiving }
43-
var body: some ReducerOf<Self> {
44-
Reduce { state, action in
45-
switch action {
46-
case .response(let value):
47-
state.value = value
48-
return .none
49-
case .start:
50-
return .run { send in
51-
await send(.response(42))
52-
try await Task.never()
53-
}
42+
enum CancelID { case longLiving }
43+
var body: some ReducerOf<Self> {
44+
Reduce { state, action in
45+
switch action {
46+
case .response(let value):
47+
state.value = value
48+
return .none
49+
case .start:
50+
return .run { send in
51+
await send(.response(42))
52+
try await Task.never()
53+
}
5454
.cancellable(id: CancelID.longLiving, cancelInFlight: true)
55-
case .stop:
56-
return .cancel(id: CancelID.longLiving)
55+
case .stop:
56+
return .cancel(id: CancelID.longLiving)
57+
}
5758
}
5859
}
5960
}
60-
}
6161

6262
#endif

0 commit comments

Comments
 (0)