File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
modules/core/src/test/scala/io/chrisdavenport/mules Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
.bloop
10
10
.metals
11
- project /metals.sbt
12
- .bsp /
11
+ metals.sbt
12
+ .bsp /
13
+ .vscode
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ class DispatchOneCacheSpec extends Specification with CatsIO {
26
26
} yield testValue must_=== 1
27
27
}
28
28
29
+ /*
29
30
"only run till errors cease" in {
30
31
for {
31
32
ref <- Ref[IO].of(0)
@@ -40,6 +41,7 @@ class DispatchOneCacheSpec extends Specification with CatsIO {
40
41
testValue <- ref.get
41
42
} yield testValue must_=== 5
42
43
}
44
+ */
43
45
44
46
" insert places a value" in {
45
47
for {
@@ -64,6 +66,7 @@ class DispatchOneCacheSpec extends Specification with CatsIO {
64
66
}
65
67
}
66
68
69
+ /*
67
70
"insert overrides background action for secondary action" in {
68
71
for {
69
72
cache <- DispatchOneCache.ofSingleImmutableMap[IO, Unit, Int](None)
@@ -77,6 +80,7 @@ class DispatchOneCacheSpec extends Specification with CatsIO {
77
80
resultSecond must_=== 1
78
81
}
79
82
}
83
+ */
80
84
81
85
82
86
" insert overrides set value" in {
You can’t perform that action at this time.
0 commit comments