Hi Michal, You mentioned you saw an error while running the fgcp unit tests. I think I've reproduced it: The error is AuthFailure: No certificate registered under name 'fgcp-testuser'
Is that what you saw? In my unit tests I have: require_relative 'common.rb' In my common.rb I set an environment variable: ENV['FGCP_CERT_DIR'] = File.join(File.dirname(__FILE__), 'cert') And this variable is read in the fgcp_driver.rb: CERT_DIR = ENV['FGCP_CERT_DIR'] || File::expand_path('~/.deltacloud/drivers/fgcp') Somehow ENV['FGCP_CERT_DIR'] is returning the right path in common.rb (checked with puts) and nil in fgcp_driver.rb, causing it to fall back to the wrong directory, hence it can't find the certificate. This is on ruby 1.9.3. I'm sure this used to work. Any idea how this could break and how I can fix it? Cheers, Dies Koper