Sha256: d2cea8f2e647700d3790f6b1a8a5ec07aff43b04c125b68578005bc0a681ca0e
Contents?: true
Size: 766 Bytes
Versions: 4
Compression:
Stored size: 766 Bytes
Contents
require 'fog' require 'fog/bin' require File.expand_path(File.join(File.dirname(__FILE__), 'helpers', 'mock_helper')) def lorem_file File.open(File.dirname(__FILE__) + '/lorem.txt', 'r') end # check to see which credentials are available and add others to the skipped tags list all_providers = ['aws', 'bluebox', 'brightbox', 'dnsimple', 'ecloud', 'gogrid', 'google', 'linode', 'local', 'newservers', 'rackspace', 'slicehost', 'zerigo'] available_providers = Fog.providers.map {|provider| provider.downcase} for provider in (all_providers - available_providers) Formatador.display_line("[yellow]Skipping tests for [bold]#{provider}[/] [yellow]due to lacking credentials (add some to '~/.fog' to run them)[/]") Thread.current[:tags] << ('-' << provider) end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fog-0.7.2 | tests/helper.rb |
fog-0.7.1 | tests/helper.rb |
fog-0.7.0 | tests/helper.rb |
fog-0.6.0 | tests/helper.rb |