diff options
author | Hiroshi SHIBATA <[email protected]> | 2020-05-11 22:11:40 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-05-13 07:54:37 +0900 |
commit | f61dbb921e471e2d36fbd39c6669dde00d0fa87a (patch) | |
tree | 026e80e7f42e5e7ccbd7dfacda1573ed135f336e /spec/bundler/runtime/with_unbundled_env_spec.rb | |
parent | aecbb78517ed1ae2c6c5d118b569fad5993b83e3 (diff) |
Marked the some examples that are not working with the ruby repository
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3086
Diffstat (limited to 'spec/bundler/runtime/with_unbundled_env_spec.rb')
-rw-r--r-- | spec/bundler/runtime/with_unbundled_env_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/bundler/runtime/with_unbundled_env_spec.rb b/spec/bundler/runtime/with_unbundled_env_spec.rb index 80c5d92b76..81e4fcfd6e 100644 --- a/spec/bundler/runtime/with_unbundled_env_spec.rb +++ b/spec/bundler/runtime/with_unbundled_env_spec.rb @@ -39,7 +39,7 @@ RSpec.describe "Bundler.with_env helpers" do end end - it "works with nested bundle exec invocations" do + it "works with nested bundle exec invocations", :ruby_repo do create_file("exe.rb", <<-'RUBY') count = ARGV.first.to_i exit if count < 0 @@ -202,7 +202,7 @@ RSpec.describe "Bundler.with_env helpers" do RUBY end - it "runs system inside with_clean_env" do + it "runs system inside with_clean_env", :ruby_repo do run_bundler_script({ "BUNDLE_FOO" => "bar" }, bundled_app("source.rb")) expect($?.exitstatus).to eq(42) end @@ -217,7 +217,7 @@ RSpec.describe "Bundler.with_env helpers" do RUBY end - it "runs system inside with_unbundled_env" do + it "runs system inside with_unbundled_env", :ruby_repo do run_bundler_script({ "BUNDLE_FOO" => "bar" }, bundled_app("source.rb")) expect($?.exitstatus).to eq(42) end |