diff --git a/tests/vcloud/models/compute/conn_helper.rb b/tests/vcloud/models/compute/conn_helper.rb deleted file mode 100644 index 165fb62c6..000000000 --- a/tests/vcloud/models/compute/conn_helper.rb +++ /dev/null @@ -1,20 +0,0 @@ -module Fog - module Vcloud - if false - class Fog::Connection - def request(params, &block) - path = File.expand_path(File.join(File.dirname(__FILE__),'..','..','data',params[:path].gsub(/^\//,'').gsub('/','_+_'))) - if File.exists?(path) - body = File.read(path) - else - '' - end - Excon::Response.new( - :body => body, - :status => 200, - :header => '') - end - end - end - end -end