mirror of
https://github.com/inspec/inspec
synced 2025-02-17 06:28:40 +00:00
Suppress output from rubygems installs.
I still wish this wouldn't fetch or install... but in the meantime, leave my dots alone. Signed-off-by: Ryan Davis <zenspider@chef.io>
This commit is contained in:
parent
f0533846fb
commit
d4b3a5c149
1 changed files with 6 additions and 2 deletions
|
@ -413,7 +413,9 @@ class PluginInstallerUninstallTests < Minitest::Test
|
||||||
@installer.__reset_loader
|
@installer.__reset_loader
|
||||||
|
|
||||||
skip_windows!
|
skip_windows!
|
||||||
@installer.uninstall("inspec-test-fixture")
|
capture_subprocess_io do
|
||||||
|
@installer.uninstall("inspec-test-fixture")
|
||||||
|
end
|
||||||
|
|
||||||
# UnInstalling a gem physically removes the gemspec and the gem library code
|
# UnInstalling a gem physically removes the gemspec and the gem library code
|
||||||
spec_path = File.join(@installer.gem_path, "specifications", "inspec-test-fixture-0.1.0.gemspec")
|
spec_path = File.join(@installer.gem_path, "specifications", "inspec-test-fixture-0.1.0.gemspec")
|
||||||
|
@ -439,7 +441,9 @@ class PluginInstallerUninstallTests < Minitest::Test
|
||||||
@installer.__reset_loader
|
@installer.__reset_loader
|
||||||
|
|
||||||
skip_windows!
|
skip_windows!
|
||||||
@installer.uninstall("inspec-test-fixture")
|
capture_subprocess_io do
|
||||||
|
@installer.uninstall("inspec-test-fixture")
|
||||||
|
end
|
||||||
|
|
||||||
# UnInstalling a gem removes the gemspec and the gem library code
|
# UnInstalling a gem removes the gemspec and the gem library code
|
||||||
spec_path = File.join(@installer.gem_path, "specifications", "inspec-test-fixture-0.2.0.gemspec")
|
spec_path = File.join(@installer.gem_path, "specifications", "inspec-test-fixture-0.2.0.gemspec")
|
||||||
|
|
Loading…
Add table
Reference in a new issue