diff options
author | Ian Ker-Seymer <[email protected]> | 2022-12-07 00:30:01 -0500 |
---|---|---|
committer | git <[email protected]> | 2022-12-07 11:31:26 +0000 |
commit | 01fd1c482e6ca08c7598c951e6929ba55b4a8228 (patch) | |
tree | 892db67a54f7fc04304a2736b327790d775a3fd0 /test | |
parent | 88497b2167b88bb7e4f17cb5f2f74f8314d6d45d (diff) |
[rubygems/rubygems] Remove remaining dev profile test
https://github.com/rubygems/rubygems/commit/7d50e998b3
Diffstat (limited to 'test')
-rw-r--r-- | test/rubygems/test_gem_ext_cargo_builder_unit.rb | 10 |
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"] |