Sha256: 04a80c88b570a9f69b512a042d6d1deb766a495abc0dd86076962a804422bcca

Contents?: true

Size: 426 Bytes

Versions: 2

Compression:

Stored size: 426 Bytes

Contents

require 'rspec'

Dir["./support/**/*.rb"].each do |f|
      require f
end

RSpec.configure do |config|
end

module RikanjoSpecHelper
  def regions
    return %w{
      eu-west-1
      sa-east-1
      us-east-1
      ap-northeast-1
      us-west-2
      us-west-1
      ap-southeast-1
      ap-southeast-2
    }
  end

  def get_sleep url
    contents = Net::HTTP.get(URI.parse(url))
    sleep 1
    return contents
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aws-rikanjo-0.0.9 spec/spec_helper.rb
aws-rikanjo-0.0.8 spec/spec_helper.rb