Remove unnecessary test from virtualbox context

This commit is contained in:
Brian Cain 2019-06-04 14:56:31 -07:00
parent bb6913e6e8
commit b8b2111700
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
1 changed files with 0 additions and 5 deletions

View File

@ -28,11 +28,6 @@ shared_context "virtualbox" do
allow(subprocess).to receive(:execute).
with("VBoxManage", "showvminfo", kind_of(String), kind_of(Hash)).
and_return(subprocess_result(exit_code: 0))
# apparently this is also used in docker tests
#allow(subprocess).to receive(:execute).
# with("docker", "version", an_instance_of(Hash)).
# and_return(subprocess_result(exit_code: 0))
end
around do |example|