aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Ker-Seymer <ian.kerseymer@shopify.com>2022-12-07 00:30:01 -0500
committergit <svn-admin@ruby-lang.org>2022-12-07 11:31:26 +0000
commit01fd1c482e6ca08c7598c951e6929ba55b4a8228 (patch)
tree892db67a54f7fc04304a2736b327790d775a3fd0
parent88497b2167b88bb7e4f17cb5f2f74f8314d6d45d (diff)
downloadruby-01fd1c482e6ca08c7598c951e6929ba55b4a8228.tar.gz
[rubygems/rubygems] Remove remaining dev profile test
https://github.com/rubygems/rubygems/commit/7d50e998b3
-rw-r--r--test/rubygems/test_gem_ext_cargo_builder_unit.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/rubygems/test_gem_ext_cargo_builder_unit.rb b/test/rubygems/test_gem_ext_cargo_builder_unit.rb
index 4484f48ca9..dc9350bb3a 100644
--- a/test/rubygems/test_gem_ext_cargo_builder_unit.rb
+++ b/test/rubygems/test_gem_ext_cargo_builder_unit.rb
@@ -23,16 +23,6 @@ class TestGemExtCargoBuilderUnit < Gem::TestCase
assert_includes command, "--locked"
end
- def test_cargo_command_does_not_lock_in_dev_profile
- skip_unsupported_platforms!
- spec = Gem::Specification.new "rust_ruby_example", "0.1.0"
- builder = Gem::Ext::CargoBuilder.new(spec)
- builder.profile = :dev
- command = builder.cargo_command(Dir.pwd, @tempdir)
-
- assert_not_includes command, "--locked"
- end
-
def test_cargo_command_passes_respects_cargo_env_var
skip_unsupported_platforms!
old_cargo = ENV["CARGO"]