@@ -3,6 +3,7 @@ package dotty.tools.pc.tests.completion
3
3
import dotty .tools .pc .base .BaseCompletionSuite
4
4
5
5
import org .junit .Test
6
+ import org .junit .Ignore
6
7
7
8
class CompletionScalaCliSuite extends BaseCompletionSuite :
8
9
@@ -44,6 +45,7 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
44
45
|""" .stripMargin,
45
46
)
46
47
48
+ @ Ignore
47
49
@ Test def `single-colon` =
48
50
check(
49
51
""" |//> using lib "io.circe:circe-core_na@@
@@ -52,9 +54,6 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
52
54
""" |circe-core_native0.4_2.12
53
55
|circe-core_native0.4_2.13
54
56
|circe-core_native0.4_3
55
- |circe-core_native0.5_2.12
56
- |circe-core_native0.5_2.13
57
- |circe-core_native0.5_3
58
57
|""" .stripMargin
59
58
)
60
59
@@ -77,16 +76,16 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
77
76
|""" .stripMargin,
78
77
)
79
78
79
+ @ Ignore
80
80
@ Test def `multiple-libs` =
81
81
check(
82
82
""" |//> using lib "io.circe::circe-core:0.14.0", "io.circe::circe-core_na@@"
83
83
|package A
84
84
|""" .stripMargin,
85
- """ circe-core_native0.4
86
- |circe-core_native0.5
87
- |""" .stripMargin
85
+ " circe-core_native0.4"
88
86
)
89
87
88
+ @ Ignore
90
89
@ Test def `script` =
91
90
check(
92
91
scriptWrapper(
@@ -98,9 +97,6 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
98
97
""" |circe-core_native0.4_2.12
99
98
|circe-core_native0.4_2.13
100
99
|circe-core_native0.4_3
101
- |circe-core_native0.5_2.12
102
- |circe-core_native0.5_2.13
103
- |circe-core_native0.5_3
104
100
|""" .stripMargin,
105
101
filename = " script.sc.scala" ,
106
102
enablePackageWrap = false
@@ -142,13 +138,13 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
142
138
|io.circul""" .stripMargin
143
139
)
144
140
141
+ @ Ignore
145
142
@ Test def `multiple-deps2` =
146
143
check(
147
144
""" |//> using libs "io.circe::circe-core:0.14.0", "io.circe::circe-core_na@@"
148
145
|package A
149
146
|""" .stripMargin,
150
- """ circe-core_native0.4
151
- |circe-core_native0.5""" .stripMargin
147
+ " circe-core_native0.4"
152
148
)
153
149
154
150
private def scriptWrapper (code : String , filename : String ): String =
0 commit comments