Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b42b2e7

Browse files
Fix some pending specs filters that are actually for Bundler 5
1 parent 1cb3e00 commit b42b2e7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

bundler/spec/other/major_deprecation_spec.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config list` instead.")
210210
end
211211

212-
pending "fails with a helpful error", bundler: "4"
212+
pending "fails with a helpful error", bundler: "5"
213213
end
214214

215215
describe "old get interface" do
@@ -221,7 +221,7 @@
221221
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config get waka` instead.")
222222
end
223223

224-
pending "fails with a helpful error", bundler: "4"
224+
pending "fails with a helpful error", bundler: "5"
225225
end
226226

227227
describe "old set interface" do
@@ -233,7 +233,7 @@
233233
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config set waka wakapun` instead.")
234234
end
235235

236-
pending "fails with a helpful error", bundler: "4"
236+
pending "fails with a helpful error", bundler: "5"
237237
end
238238

239239
describe "old set interface with --local" do
@@ -245,7 +245,7 @@
245245
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config set --local waka wakapun` instead.")
246246
end
247247

248-
pending "fails with a helpful error", bundler: "4"
248+
pending "fails with a helpful error", bundler: "5"
249249
end
250250

251251
describe "old set interface with --global" do
@@ -257,7 +257,7 @@
257257
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config set --global waka wakapun` instead.")
258258
end
259259

260-
pending "fails with a helpful error", bundler: "4"
260+
pending "fails with a helpful error", bundler: "5"
261261
end
262262

263263
describe "old unset interface" do
@@ -269,7 +269,7 @@
269269
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config unset waka` instead.")
270270
end
271271

272-
pending "fails with a helpful error", bundler: "4"
272+
pending "fails with a helpful error", bundler: "5"
273273
end
274274

275275
describe "old unset interface with --local" do
@@ -281,7 +281,7 @@
281281
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config unset --local waka` instead.")
282282
end
283283

284-
pending "fails with a helpful error", bundler: "4"
284+
pending "fails with a helpful error", bundler: "5"
285285
end
286286

287287
describe "old unset interface with --global" do
@@ -293,7 +293,7 @@
293293
expect(deprecations).to include("Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config unset --global waka` instead.")
294294
end
295295

296-
pending "fails with a helpful error", bundler: "4"
296+
pending "fails with a helpful error", bundler: "5"
297297
end
298298
end
299299

@@ -310,7 +310,7 @@
310310
expect(deprecations).to include("Pass --all to `bundle update` to update everything")
311311
end
312312

313-
pending "fails with a helpful error when no options are given", bundler: "4"
313+
pending "fails with a helpful error when no options are given", bundler: "5"
314314

315315
it "does not warn when --all is passed" do
316316
bundle "update --all"

0 commit comments

Comments
 (0)